summaryrefslogtreecommitdiffstats
path: root/karbon/commands
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
commitafbfdc507bfaafc8824a9808311d57a9ece87510 (patch)
tree47be45bbd69c321ce79e14b683e59318748be9cb /karbon/commands
parent880d042b2902fae8007f202dd35ad9330499867b (diff)
downloadkoffice-afbfdc507bfaafc8824a9808311d57a9ece87510.tar.gz
koffice-afbfdc507bfaafc8824a9808311d57a9ece87510.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karbon/commands')
-rw-r--r--karbon/commands/vcommand.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/karbon/commands/vcommand.cc b/karbon/commands/vcommand.cc
index 97da53b5..da08d94f 100644
--- a/karbon/commands/vcommand.cc
+++ b/karbon/commands/vcommand.cc
@@ -137,7 +137,7 @@ VCommandHistory::undo()
updateActions();
- m_part->tqrepaintAllViews();
+ m_part->repaintAllViews();
}
void
@@ -170,7 +170,7 @@ VCommandHistory::redo()
updateActions();
- m_part->tqrepaintAllViews();
+ m_part->repaintAllViews();
}
void
@@ -186,7 +186,7 @@ VCommandHistory::undo( VCommand* command )
updateActions();
- m_part->tqrepaintAllViews();
+ m_part->repaintAllViews();
}
void
@@ -202,7 +202,7 @@ VCommandHistory::redo( VCommand* command )
updateActions();
- m_part->tqrepaintAllViews();
+ m_part->repaintAllViews();
}
void
@@ -231,7 +231,7 @@ VCommandHistory::undoAllTo( VCommand* command )
emit commandExecuted();
updateActions();
- m_part->tqrepaintAllViews();
+ m_part->repaintAllViews();
}
void
@@ -260,7 +260,7 @@ VCommandHistory::redoAllTo( VCommand* command )
emit commandExecuted();
updateActions();
- m_part->tqrepaintAllViews();
+ m_part->repaintAllViews();
}
void