summaryrefslogtreecommitdiffstats
path: root/kimagemapeditor/kimecommands.cpp
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
commita40b0e89b6b20ba9039d3f79e73afbeac6954ccb (patch)
tree07779032ca48d6e8e71887a329141f8e635c901c /kimagemapeditor/kimecommands.cpp
parenta2bae01d006ea8053e85bc16d09a8cf40a4b0b75 (diff)
downloadtdewebdev-a40b0e89b6b20ba9039d3f79e73afbeac6954ccb.tar.gz
tdewebdev-a40b0e89b6b20ba9039d3f79e73afbeac6954ccb.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kimagemapeditor/kimecommands.cpp')
-rw-r--r--kimagemapeditor/kimecommands.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kimagemapeditor/kimecommands.cpp b/kimagemapeditor/kimecommands.cpp
index 1d2b08ee..e47f1b8f 100644
--- a/kimagemapeditor/kimecommands.cpp
+++ b/kimagemapeditor/kimecommands.cpp
@@ -147,7 +147,7 @@ MoveCommand::~MoveCommand () {
void MoveCommand::execute()
{
- // only for tqrepainting reasons
+ // only for repainting reasons
Area* tempArea = _areaSelection->clone();
_areaSelection->moveTo( _newPoint.x(), _newPoint.y() );
@@ -269,15 +269,15 @@ void AddPointCommand::execute()
void AddPointCommand::unexecute()
{
// TQRect *selectionPoint = _areaSelection->onSelectionPoint(_point);
- Area* tqrepaintArea = _areaSelection->clone();
+ Area* repaintArea = _areaSelection->clone();
_areaSelection->removeCoord(_coordpos);
_areaSelection->setMoving(false);
_document->slotAreaChanged( _areaSelection );
- _document->slotAreaChanged( tqrepaintArea );
+ _document->slotAreaChanged( repaintArea );
- delete tqrepaintArea;
+ delete repaintArea;
}
RemovePointCommand::RemovePointCommand (KImageMapEditor *document, AreaSelection *a, Area *oldArea)