diff options
Diffstat (limited to 'src/base/ViewElement.h')
-rw-r--r-- | src/base/ViewElement.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/ViewElement.h b/src/base/ViewElement.h index 58d312d..8cc3d09 100644 --- a/src/base/ViewElement.h +++ b/src/base/ViewElement.h @@ -53,7 +53,7 @@ public: /** * Returns the X coordinate of the element, as computed by the - * tqlayout. This is not the coordinate of the associated canvas + * layout. This is not the coordinate of the associated canvas * item. * * @see getCanvasX() @@ -62,7 +62,7 @@ public: /** * Returns the Y coordinate of the element, as computed by the - * tqlayout. This is not the coordinate of the associated canvas + * layout. This is not the coordinate of the associated canvas * item. * * @see getCanvasY() @@ -70,13 +70,13 @@ public: virtual double getLayoutY() const { return m_layoutY; } /** - * Sets the X coordinate which was computed by the tqlayout engine + * Sets the X coordinate which was computed by the layout engine * @see getLayoutX() */ virtual void setLayoutX(double x) { m_layoutX = x; } /** - * Sets the Y coordinate which was computed by the tqlayout engine + * Sets the Y coordinate which was computed by the layout engine * @see getLayoutY() */ virtual void setLayoutY(double y) { m_layoutY = y; } |