summaryrefslogtreecommitdiffstats
path: root/src/base/ViewElement.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit1905a36716979889e47bb0fdd7bf33c6204c5a6d (patch)
tree0daef2425269e8053435f4f7e734091d72e27be0 /src/base/ViewElement.h
parent05768569bc9c8b3eb75c837d305058fc280db63c (diff)
downloadrosegarden-1905a36716979889e47bb0fdd7bf33c6204c5a6d.tar.gz
rosegarden-1905a36716979889e47bb0fdd7bf33c6204c5a6d.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/base/ViewElement.h')
-rw-r--r--src/base/ViewElement.h12
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;
};