summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-05 10:21:03 +0900
committerMichele Calgaro <[email protected]>2024-01-07 19:42:58 +0900
commit66b3326a362344f722a8fbe52534e3d114005660 (patch)
treeafcfd7107aeb48499a618a85efb53bb43e23941d /doc
parent38392cfb973f23a1433d7855dc7f4325515926d0 (diff)
downloadkmyfirewall-66b3326a362344f722a8fbe52534e3d114005660.tar.gz
kmyfirewall-66b3326a362344f722a8fbe52534e3d114005660.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 6df466c45ad202eea7d7401a2e5ff67ee783e272)
Diffstat (limited to 'doc')
-rw-r--r--doc/kmyfirewall/index.docbook12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/kmyfirewall/index.docbook b/doc/kmyfirewall/index.docbook
index cfe91e0..6741259 100644
--- a/doc/kmyfirewall/index.docbook
+++ b/doc/kmyfirewall/index.docbook
@@ -1073,13 +1073,13 @@ KMFRuleOptionEditMAC::KMFRuleOptionEditMAC(TQObject *parent, const char *name)
m_edit->hide();
// Connect the Signals for the editor class to our slots passing them to the app
- connect( m_edit,SIGNAL(sigAddRuleOpt(TQString*, QPtrList&lt; TQString &gt;* ) ),
- this,SLOT( slotAddRuleOption(TQString*, QPtrList&lt; TQString &gt;* ) ) );
+ connect( m_edit,TQ_SIGNAL(sigAddRuleOpt(TQString*, QPtrList&lt; TQString &gt;* ) ),
+ this,TQ_SLOT( slotAddRuleOption(TQString*, QPtrList&lt; TQString &gt;* ) ) );
//
- //connect( m_edit,SIGNAL(sigAddTargetOpt(TQString*, QPtrList&lt; TQString &gt;* ) ),
- // this,SLOT( slotAddTargetOption(TQString*, QPtrList&lt; TQString &gt;* ) ) );
- connect( m_edit,SIGNAL(sigHideMe() ),
- this,SLOT( slotShowOverview() ) );
+ //connect( m_edit,TQ_SIGNAL(sigAddTargetOpt(TQString*, QPtrList&lt; TQString &gt;* ) ),
+ // this,TQ_SLOT( slotAddTargetOption(TQString*, QPtrList&lt; TQString &gt;* ) ) );
+ connect( m_edit,TQ_SIGNAL(sigHideMe() ),
+ this,TQ_SLOT( slotShowOverview() ) );
}
KMFRuleOptionEditMAC::~KMFRuleOptionEditMAC() {}