summaryrefslogtreecommitdiffstats
path: root/src/document/BasicCommand.cpp
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/document/BasicCommand.cpp
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/document/BasicCommand.cpp')
-rw-r--r--src/document/BasicCommand.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/document/BasicCommand.cpp b/src/document/BasicCommand.cpp
index 31498e4..b17d79d 100644
--- a/src/document/BasicCommand.cpp
+++ b/src/document/BasicCommand.cpp
@@ -90,7 +90,7 @@ Rosegarden::Segment& BasicCommand::getSegment()
return m_segment;
}
-Rosegarden::timeT BasicCommand::getRetqlayoutEndTime()
+Rosegarden::timeT BasicCommand::getRelayoutEndTime()
{
return getEndTime();
}
@@ -114,9 +114,9 @@ BasicCommand::execute()
copyFrom(m_redoEvents);
}
- m_segment.updateRefreshStatuses(getStartTime(), getRetqlayoutEndTime());
+ m_segment.updateRefreshStatuses(getStartTime(), getRelayoutEndTime());
RG_DEBUG << "BasicCommand(" << name() << "): updated refresh statuses "
- << getStartTime() << " -> " << getRetqlayoutEndTime() << endl;
+ << getStartTime() << " -> " << getRelayoutEndTime() << endl;
}
void
@@ -129,7 +129,7 @@ BasicCommand::unexecute()
copyFrom(&m_savedEvents);
- m_segment.updateRefreshStatuses(getStartTime(), getRetqlayoutEndTime());
+ m_segment.updateRefreshStatuses(getStartTime(), getRelayoutEndTime());
}
void