summaryrefslogtreecommitdiffstats
path: root/src/commands/matrix
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/commands/matrix
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/commands/matrix')
-rw-r--r--src/commands/matrix/MatrixEraseCommand.cpp6
-rw-r--r--src/commands/matrix/MatrixEraseCommand.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/commands/matrix/MatrixEraseCommand.cpp b/src/commands/matrix/MatrixEraseCommand.cpp
index 3285e84..c35259e 100644
--- a/src/commands/matrix/MatrixEraseCommand.cpp
+++ b/src/commands/matrix/MatrixEraseCommand.cpp
@@ -44,14 +44,14 @@ MatrixEraseCommand::MatrixEraseCommand(Segment &segment,
event->getAbsoluteTime() + event->getDuration(),
true),
m_event(event),
- m_retqlayoutEndTime(getEndTime())
+ m_relayoutEndTime(getEndTime())
{
// nothing
}
-timeT MatrixEraseCommand::getRetqlayoutEndTime()
+timeT MatrixEraseCommand::getRelayoutEndTime()
{
- return m_retqlayoutEndTime;
+ return m_relayoutEndTime;
}
void MatrixEraseCommand::modifySegment()
diff --git a/src/commands/matrix/MatrixEraseCommand.h b/src/commands/matrix/MatrixEraseCommand.h
index 9e126a4..244c0f9 100644
--- a/src/commands/matrix/MatrixEraseCommand.h
+++ b/src/commands/matrix/MatrixEraseCommand.h
@@ -45,13 +45,13 @@ public:
MatrixEraseCommand(Segment &segment,
Event *event);
- virtual timeT getRetqlayoutEndTime();
+ virtual timeT getRelayoutEndTime();
protected:
virtual void modifySegment();
Event *m_event; // only used on 1st execute (cf bruteForceRedo)
- timeT m_retqlayoutEndTime;
+ timeT m_relayoutEndTime;
};
//------------------------------