diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:57:35 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:57:35 -0600 |
commit | 6ca08e7a881c0c97f338e0085f75af04ec08ad04 (patch) | |
tree | 5462bef0f060df1c19e3fcb98250e5cfa24edc11 /src/base/ViewElement.h | |
parent | 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a (diff) | |
download | rosegarden-6ca08e7a881c0c97f338e0085f75af04ec08ad04.tar.gz rosegarden-6ca08e7a881c0c97f338e0085f75af04ec08ad04.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a.
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 8cc3d09..58d312d 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 - * layout. This is not the coordinate of the associated canvas + * tqlayout. 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 - * layout. This is not the coordinate of the associated canvas + * tqlayout. 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 layout engine + * Sets the X coordinate which was computed by the tqlayout engine * @see getLayoutX() */ virtual void setLayoutX(double x) { m_layoutX = x; } /** - * Sets the Y coordinate which was computed by the layout engine + * Sets the Y coordinate which was computed by the tqlayout engine * @see getLayoutY() */ virtual void setLayoutY(double y) { m_layoutY = y; } |