summaryrefslogtreecommitdiffstats
path: root/src/firewallsproxies.ui.h
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/firewallsproxies.ui.h
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/firewallsproxies.ui.h')
-rw-r--r--src/firewallsproxies.ui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/firewallsproxies.ui.h b/src/firewallsproxies.ui.h
index b215b39..4cee153 100644
--- a/src/firewallsproxies.ui.h
+++ b/src/firewallsproxies.ui.h
@@ -80,7 +80,7 @@ void FirewallsProxies::ReachableAddresses_contextMenuRequested( TQListViewItem *
TQPopupMenu *menu = new TQPopupMenu( ReachableAddresses );
menu->clear();
- menu->insertItem( "Delete Entry", this,SLOT(slotDeleteEntry()) );
+ menu->insertItem( "Delete Entry", this,TQ_SLOT(slotDeleteEntry()) );
menu->popup( point );
}
@@ -157,7 +157,7 @@ void FirewallsProxies::Bridge_contextMenuRequested( TQListViewItem *, const TQPo
TQPopupMenu *menu = new TQPopupMenu( Bridge );
menu->clear();
- menu->insertItem( "Delete Entry", this,SLOT(slotDeleteBridgesEntry()) );
+ menu->insertItem( "Delete Entry", this,TQ_SLOT(slotDeleteBridgesEntry()) );
menu->popup( point );
}
@@ -183,8 +183,8 @@ void FirewallsProxies::slotDeleteBridgesEntry( )
void FirewallsProxies::slotGetBridges( )
{
- connect( filelist, SIGNAL( completed() ), this,
- SLOT( parseBridges() ) );
+ connect( filelist, TQ_SIGNAL( completed() ), this,
+ TQ_SLOT( parseBridges() ) );
filelist->openURL("https://bridges.torproject.org");
}
@@ -192,8 +192,8 @@ void FirewallsProxies::slotGetBridges( )
void FirewallsProxies::parseBridges()
{
- disconnect( filelist, SIGNAL( completed() ), this,
- SLOT( parseBridges() ) );
+ disconnect( filelist, TQ_SIGNAL( completed() ), this,
+ TQ_SLOT( parseBridges() ) );
const DOM::HTMLCollection links = filelist->htmlDocument().all();
if (links.length() == 0){