diff options
Diffstat (limited to 'src/base/ViewElement.h')
-rw-r--r-- | src/base/ViewElement.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/base/ViewElement.h b/src/base/ViewElement.h index f898e51..58d312d 100644 --- a/src/base/ViewElement.h +++ b/src/base/ViewElement.h @@ -58,7 +58,7 @@ public: * * @see getCanvasX() */ - virtual double getLayoutX() const { return m_tqlayoutX; } + virtual double getLayoutX() const { return m_layoutX; } /** * Returns the Y coordinate of the element, as computed by the @@ -67,19 +67,19 @@ public: * * @see getCanvasY() */ - virtual double getLayoutY() const { return m_tqlayoutY; } + virtual double getLayoutY() const { return m_layoutY; } /** * Sets the X coordinate which was computed by the tqlayout engine * @see getLayoutX() */ - virtual void setLayoutX(double x) { m_tqlayoutX = x; } + virtual void setLayoutX(double x) { m_layoutX = x; } /** * Sets the Y coordinate which was computed by the tqlayout engine * @see getLayoutY() */ - virtual void setLayoutY(double y) { m_tqlayoutY = y; } + virtual void setLayoutY(double y) { m_layoutY = y; } void dump(std::ostream&) const; @@ -88,8 +88,8 @@ public: protected: ViewElement(Event *); - double m_tqlayoutX; - double m_tqlayoutY; + double m_layoutX; + double m_layoutY; Event *m_event; }; |