diff options
Diffstat (limited to 'ksirc/servercontroller.cpp')
-rw-r--r-- | ksirc/servercontroller.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ksirc/servercontroller.cpp b/ksirc/servercontroller.cpp index d47791e6..273fd6ef 100644 --- a/ksirc/servercontroller.cpp +++ b/ksirc/servercontroller.cpp @@ -151,7 +151,7 @@ servercontroller::servercontroller( TQWidget*, const char* name ) setFrameBorderWidth(5); TQPopupMenu *file = new TQPopupMenu(this, TQCString(name) + "_menu_file"); - KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(endksirc()), actionCollection())->plug(file); + KStdAction::quit(this, TQT_SLOT(endksirc()), actionCollection())->plug(file); #ifndef NDEBUG file->insertItem(i18n("Dump Object Tree"), this, TQT_SLOT(dump_obj())); file->insertItem(i18n("Server Debug Window"), this, TQT_SLOT(server_debug())); @@ -173,21 +173,21 @@ servercontroller::servercontroller( TQWidget*, const char* name ) options->insertItem(SmallIcon( "filter" ), i18n("&Filter Rule Editor..."), this, TQT_SLOT(filter_rule_editor())); options->insertSeparator(); - KStdAction::configureNotifications(TQT_TQOBJECT(this), TQT_SLOT(notification_prefs()), actionCollection())->plug(options); + KStdAction::configureNotifications(this, TQT_SLOT(notification_prefs()), actionCollection())->plug(options); - KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(general_prefs()), actionCollection())->plug(options); + KStdAction::preferences(this, TQT_SLOT(general_prefs()), actionCollection())->plug(options); MenuBar->insertItem(i18n("&Settings"), options); KHelpMenu *help = new KHelpMenu( this, kapp->aboutData() ); MenuBar->insertItem( KStdGuiItem::help().text(), help->menu() ); - m_kga = new TDEGlobalAccel(TQT_TQOBJECT(this), "globalAccess"); + m_kga = new TDEGlobalAccel(this, "globalAccess"); m_kga->insert("New Server", i18n("New Server"), i18n("This action allows you to open a new server more easily " "when in docked mode, since you don't need to click on the " "dock icon."), - ALT+CTRL+Key_C, KKey::QtWIN+CTRL+Key_C, TQT_TQOBJECT(this), + ALT+CTRL+Key_C, KKey::QtWIN+CTRL+Key_C, this, TQT_SLOT(new_connection())); open_toplevels = 0; |