summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:21:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:21:03 +0900
commit6df466c45ad202eea7d7401a2e5ff67ee783e272 (patch)
treec7eef2a16b5eda4152bb3445da2bf13408c6e9b3 /doc
parent487235a78de062d9f083ff4b4cb15167898890db (diff)
downloadkmyfirewall-6df466c45ad202eea7d7401a2e5ff67ee783e272.tar.gz
kmyfirewall-6df466c45ad202eea7d7401a2e5ff67ee783e272.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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() {}