summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/widgets/systemtray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kftpgrabber/src/widgets/systemtray.cpp')
-rw-r--r--kftpgrabber/src/widgets/systemtray.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kftpgrabber/src/widgets/systemtray.cpp b/kftpgrabber/src/widgets/systemtray.cpp
index ca4c91d..8a0ebaa 100644
--- a/kftpgrabber/src/widgets/systemtray.cpp
+++ b/kftpgrabber/src/widgets/systemtray.cpp
@@ -70,13 +70,13 @@ SystemTray::SystemTray(MainWindow *parent)
slotUpdateBookmarks();
// Let our bookmarks be up to date
- connect(KFTPBookmarks::Manager::self(), SIGNAL(update()), this, SLOT(slotUpdateBookmarks()));
+ connect(KFTPBookmarks::Manager::self(), TQ_SIGNAL(update()), this, TQ_SLOT(slotUpdateBookmarks()));
m_actions->m_fileConnectAction->plug(contextMenu(), 1);
m_bookmarkMenu->plug(contextMenu(), 1);
// Ensure that we actually quit
- connect(this, SIGNAL(quitSelected()), this, SLOT(slotQuitSelected()));
+ connect(this, TQ_SIGNAL(quitSelected()), this, TQ_SLOT(slotQuitSelected()));
}
SystemTray::~SystemTray()
@@ -110,7 +110,7 @@ void SystemTray::showBalloon(const TQString &text)
KWin::setOnAllDesktops(m_balloon->winId() , true);
// Hide the balloon after 5 sec
- TQTimer::singleShot(5000, this, SLOT(slotHideBalloon()));
+ TQTimer::singleShot(5000, this, TQ_SLOT(slotHideBalloon()));
}
void SystemTray::slotHideBalloon()