diff options
Diffstat (limited to 'src/komposeviewmanager.cpp')
-rw-r--r-- | src/komposeviewmanager.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/komposeviewmanager.cpp b/src/komposeviewmanager.cpp index 9b4da6e..0be6f5a 100644 --- a/src/komposeviewmanager.cpp +++ b/src/komposeviewmanager.cpp @@ -57,7 +57,7 @@ KomposeViewManager::KomposeViewManager(): slotStartCursorUpdateTimer(); // dirty hack. see uglyTQtHackInitFunction() - TQTimer::singleShot( 500, this, SLOT( uglyTQtHackInitFunction() ) ); + TQTimer::singleShot( 500, this, TQ_SLOT( uglyTQtHackInitFunction() ) ); } @@ -72,7 +72,7 @@ KomposeViewManager::~KomposeViewManager() */ void KomposeViewManager::uglyTQtHackInitFunction() { - connect( KomposeSettings::instance(), SIGNAL( settingsChanged() ), SLOT( slotStartCursorUpdateTimer() ) ); + connect( KomposeSettings::instance(), TQ_SIGNAL( settingsChanged() ), TQ_SLOT( slotStartCursorUpdateTimer() ) ); } /** @@ -81,7 +81,7 @@ void KomposeViewManager::uglyTQtHackInitFunction() */ void KomposeViewManager::slotStartCursorUpdateTimer() { - disconnect( cursorUpdateTimer, SIGNAL( timeout() ), this, SLOT( checkCursorPos() ) ); + disconnect( cursorUpdateTimer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( checkCursorPos() ) ); if ( KomposeSettings::instance()->getActivateOnBottomLeftCorner() || KomposeSettings::instance()->getActivateOnBottomRightCorner() || @@ -100,7 +100,7 @@ void KomposeViewManager::slotStartCursorUpdateTimer() bottomLeftCorner = deskRect.bottomLeft(); bottomRightCorner = deskRect.bottomRight(); - connect( cursorUpdateTimer, SIGNAL( timeout() ), SLOT( checkCursorPos() ) ); + connect( cursorUpdateTimer, TQ_SIGNAL( timeout() ), TQ_SLOT( checkCursorPos() ) ); cursorUpdateTimer->start( 200, false ); // TODO: Find out why even an interval of 1ms doesn't hit performance! } } @@ -131,7 +131,7 @@ void KomposeViewManager::checkCursorPos() ) { //cursorUpdateTimer->stop(); - TQTimer::singleShot( KomposeSettings::instance()->getAutoLockDelay(), this, SLOT( reCheckCursorPos() ) ); + TQTimer::singleShot( KomposeSettings::instance()->getAutoLockDelay(), this, TQ_SLOT( reCheckCursorPos() ) ); } } @@ -230,7 +230,7 @@ void KomposeViewManager::closeCurrentView() KWin::setCurrentDesktop( deskBeforeSnaps ); // A short delay until we allow screenshots again (would cause overlapping else - TQTimer::singleShot( 400, this, SLOT( toggleBlockScreenshots() ) ); + TQTimer::singleShot( 400, this, TQ_SLOT( toggleBlockScreenshots() ) ); // Restart Timer for corner checks slotStartCursorUpdateTimer(); |