summaryrefslogtreecommitdiffstats
path: root/src/base/ViewElement.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:07:05 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:07:05 -0600
commitc18386d69b76ef0218b5f0a08ca773fa824322b6 (patch)
tree0bea571897791e4a9ae01e42d0923c3c7baf0bda /src/base/ViewElement.h
parent97f1c43c867725d49f3943a68ef08d7e71767e99 (diff)
downloadrosegarden-c18386d69b76ef0218b5f0a08ca773fa824322b6.tar.gz
rosegarden-c18386d69b76ef0218b5f0a08ca773fa824322b6.zip
Rename obsolete tq methods to standard names
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 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; }