summaryrefslogtreecommitdiffstats
path: root/tdeui/kpanelmenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/kpanelmenu.cpp')
-rw-r--r--tdeui/kpanelmenu.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeui/kpanelmenu.cpp b/tdeui/kpanelmenu.cpp
index 287208b66..f2a3d8f08 100644
--- a/tdeui/kpanelmenu.cpp
+++ b/tdeui/kpanelmenu.cpp
@@ -59,8 +59,8 @@ void KPanelMenu::init(const TQString& path)
setInitialized( false );
d->startPath = path;
- connect(this, TQT_SIGNAL(activated(int)), TQT_SLOT(slotExec(int)));
- connect(this, TQT_SIGNAL(aboutToShow()), TQT_SLOT(slotAboutToShow()));
+ connect(this, TQ_SIGNAL(activated(int)), TQ_SLOT(slotExec(int)));
+ connect(this, TQ_SIGNAL(aboutToShow()), TQ_SLOT(slotAboutToShow()));
// setup cache timer
TDEConfig *config = TDEGlobal::config();
@@ -99,8 +99,8 @@ void KPanelMenu::hideEvent(TQHideEvent *ev)
{
// start the cache timer
if(d->clearDelay) {
- disconnect(&(d->t), TQT_SIGNAL(timeout()), this, TQT_SLOT(slotClear()));
- connect(&(d->t), TQT_SIGNAL(timeout()), this, TQT_SLOT(slotClear()));
+ disconnect(&(d->t), TQ_SIGNAL(timeout()), this, TQ_SLOT(slotClear()));
+ connect(&(d->t), TQ_SIGNAL(timeout()), this, TQ_SLOT(slotClear()));
d->t.start(d->clearDelay, true);
}
TQPopupMenu::hideEvent(ev);