summaryrefslogtreecommitdiffstats
path: root/ktuberling/toplevel.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
commit373fe6f2b90bcd2e452f16115a4950a4b46c1f34 (patch)
tree9de5284252e1d323cc91bb1e3563232e8e1334ab /ktuberling/toplevel.cpp
parent66c292188f8ab6951b32c07f13dc93cce847a688 (diff)
downloadtdegames-373fe6f2b90bcd2e452f16115a4950a4b46c1f34.tar.gz
tdegames-373fe6f2b90bcd2e452f16115a4950a4b46c1f34.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktuberling/toplevel.cpp')
-rw-r--r--ktuberling/toplevel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ktuberling/toplevel.cpp b/ktuberling/toplevel.cpp
index c0822446..c0131d26 100644
--- a/ktuberling/toplevel.cpp
+++ b/ktuberling/toplevel.cpp
@@ -283,7 +283,7 @@ void TopLevel::fileNew()
enableUndo(false);
enableRedo(false);
- playGround->tqrepaintAll();
+ playGround->repaintAll();
}
// Load gameboard
@@ -314,7 +314,7 @@ void TopLevel::open(const KURL &url)
enableUndo(!playGround->isFirstAction());
enableRedo(false);
- playGround->tqrepaintAll();
+ playGround->repaintAll();
KIO::NetAccess::removeTempFile( name );
}
@@ -438,7 +438,7 @@ void TopLevel::editUndo()
if (playGround->isFirstAction()) enableUndo(false);
enableRedo(true);
- playGround->tqrepaintAll();
+ playGround->repaintAll();
}
// Redo last action
@@ -451,7 +451,7 @@ void TopLevel::editRedo()
if (playGround->isLastAction()) enableRedo(false);
enableUndo(true);
- playGround->tqrepaintAll();
+ playGround->repaintAll();
}
// Switch to gameboard #0