summaryrefslogtreecommitdiffstats
path: root/src/base/ViewElement.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:35 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:35 -0600
commit6ca08e7a881c0c97f338e0085f75af04ec08ad04 (patch)
tree5462bef0f060df1c19e3fcb98250e5cfa24edc11 /src/base/ViewElement.h
parent4faf11eccc5f08d2aa0540157d6eff80b7cdb02a (diff)
downloadrosegarden-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.h8
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; }