summaryrefslogtreecommitdiffstats
path: root/src/konqplugin/tork_plug_in.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 21:16:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-01 20:25:20 +0900
commit01627fbd795c62fb7f6e8f0bce8ae6cf3dc5b6de (patch)
tree6fc3295d8f5cf222b37b0721ed00b1a1f514cc96 /src/konqplugin/tork_plug_in.cpp
parent166571710ff186cff2b09a83336f6aadc2c8340a (diff)
downloadtork-01627fbd.tar.gz
tork-01627fbd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a3180d7d508dc046a75a887d43a7e6b2d5f02468)
Diffstat (limited to 'src/konqplugin/tork_plug_in.cpp')
-rw-r--r--src/konqplugin/tork_plug_in.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/konqplugin/tork_plug_in.cpp b/src/konqplugin/tork_plug_in.cpp
index 6010b7d..5d32936 100644
--- a/src/konqplugin/tork_plug_in.cpp
+++ b/src/konqplugin/tork_plug_in.cpp
@@ -67,12 +67,12 @@ Tork_plug_in::Tork_plug_in( TQObject* parent, const char* name )
TDEActionMenu *menu = new TDEActionMenu( i18n("Anonymity Manager"), pix,
actionCollection(), "tork_menu" );
menu->setDelayed( false );
- connect( menu->popupMenu(), SIGNAL( aboutToShow() ), SLOT( showPopup() ));
+ connect( menu->popupMenu(), TQ_SIGNAL( aboutToShow() ), TQ_SLOT( showPopup() ));
m_paToggleTDE=new TDEAction(i18n("Anonymize TDE"),
TDEGlobal::iconLoader()->loadIconSet("tork_konqueroroff", TDEIcon::Small),
TDEShortcut(),
- this, SLOT(toggleTDE()),
+ this, TQ_SLOT(toggleTDE()),
actionCollection(), "tork_konqueroron" );
menu->insert( m_paToggleTDE );
@@ -81,14 +81,14 @@ Tork_plug_in::Tork_plug_in( TQObject* parent, const char* name )
TDEAction *m_firefox=new TDEAction(i18n("Re-Open Anonymously with Firefox"),
TDEGlobal::iconLoader()->loadIconSet("tork_firefox", TDEIcon::Small),
TDEShortcut(),
- this, SLOT(openWithFirefox()),
+ this, TQ_SLOT(openWithFirefox()),
actionCollection(), "tork_firefox" );
menu->insert( m_firefox );
TDEAction *m_opera=new TDEAction(i18n("Re-Open Anonymously with Opera"),
TDEGlobal::iconLoader()->loadIconSet("tork_opera", TDEIcon::Small),
TDEShortcut(),
- this, SLOT(openWithOpera()),
+ this, TQ_SLOT(openWithOpera()),
actionCollection(), "tork_opera" );
menu->insert( m_opera );