diff options
Diffstat (limited to 'kturtle/src/executer.cpp')
-rw-r--r-- | kturtle/src/executer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kturtle/src/executer.cpp b/kturtle/src/executer.cpp index 9268eab1..eec03261 100644 --- a/kturtle/src/executer.cpp +++ b/kturtle/src/executer.cpp @@ -1015,7 +1015,7 @@ void Executer::startWaiting(int msec) { bStopWaiting = false; // call a timer that sets stopWaiting to true when it runs - TQTimer::singleShot( msec, this, TQT_SLOT( slotStopWaiting() ) ); + TQTimer::singleShot( msec, this, TQ_SLOT( slotStopWaiting() ) ); while (bStopWaiting == false) { if (bAbort) return; // waits need to be interrupted by the stop action |