summaryrefslogtreecommitdiffstats
path: root/tdeui/kcursor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/kcursor.cpp')
-rw-r--r--tdeui/kcursor.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tdeui/kcursor.cpp b/tdeui/kcursor.cpp
index 8b004e339..a04786da7 100644
--- a/tdeui/kcursor.cpp
+++ b/tdeui/kcursor.cpp
@@ -250,8 +250,8 @@ KCursorPrivateAutoHideEventFilter::KCursorPrivateAutoHideEventFilter( TQWidget*
, m_isOwnCursor( false )
{
m_widget->setMouseTracking( true );
- connect( &m_autoHideTimer, TQT_SIGNAL( timeout() ),
- this, TQT_SLOT( hideCursor() ) );
+ connect( &m_autoHideTimer, TQ_SIGNAL( timeout() ),
+ this, TQ_SLOT( hideCursor() ) );
}
KCursorPrivateAutoHideEventFilter::~KCursorPrivateAutoHideEventFilter()
@@ -392,8 +392,8 @@ void KCursorPrivate::setAutoHideCursor( TQWidget *w, bool enable, bool customEve
m_eventFilters.insert( w, filter );
if ( !customEventFilter )
w->installEventFilter( filter );
- connect( w, TQT_SIGNAL( destroyed(TQObject*) ),
- this, TQT_SLOT( slotWidgetDestroyed(TQObject*) ) );
+ connect( w, TQ_SIGNAL( destroyed(TQObject*) ),
+ this, TQ_SLOT( slotWidgetDestroyed(TQObject*) ) );
}
else
{
@@ -402,8 +402,8 @@ void KCursorPrivate::setAutoHideCursor( TQWidget *w, bool enable, bool customEve
return;
w->removeEventFilter( filter );
delete filter;
- disconnect( w, TQT_SIGNAL( destroyed(TQObject*) ),
- this, TQT_SLOT( slotWidgetDestroyed(TQObject*) ) );
+ disconnect( w, TQ_SIGNAL( destroyed(TQObject*) ),
+ this, TQ_SLOT( slotWidgetDestroyed(TQObject*) ) );
}
}