diff options
Diffstat (limited to 'kget/kget_plug_in/kget_plug_in.cpp')
-rw-r--r-- | kget/kget_plug_in/kget_plug_in.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kget/kget_plug_in/kget_plug_in.cpp b/kget/kget_plug_in/kget_plug_in.cpp index b7f1ed69..c4d52fac 100644 --- a/kget/kget_plug_in/kget_plug_in.cpp +++ b/kget/kget_plug_in/kget_plug_in.cpp @@ -52,17 +52,17 @@ KGet_plug_in::KGet_plug_in( TQObject* parent, const char* name ) TDEActionMenu *menu = new TDEActionMenu( i18n("Download Manager"), pix, actionCollection(), "kget_menu" ); menu->setDelayed( false ); - connect( menu->popupMenu(), TQT_SIGNAL( aboutToShow() ), TQT_SLOT( showPopup() )); + connect( menu->popupMenu(), TQ_SIGNAL( aboutToShow() ), TQ_SLOT( showPopup() )); m_paToggleDropTarget=new TDEToggleAction(i18n("Show Drop Target"), TDEShortcut(), - this, TQT_SLOT(slotShowDrop()), + this, TQ_SLOT(slotShowDrop()), actionCollection(), "show_drop" ); menu->insert( m_paToggleDropTarget ); TDEAction *action = new TDEAction(i18n("List All Links"), TDEShortcut(), - this, TQT_SLOT( slotShowLinks() ), + this, TQ_SLOT( slotShowLinks() ), actionCollection(), "show_links"); menu->insert( action ); |