diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:21:03 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:21:03 +0900 |
commit | 6df466c45ad202eea7d7401a2e5ff67ee783e272 (patch) | |
tree | c7eef2a16b5eda4152bb3445da2bf13408c6e9b3 /doc | |
parent | 487235a78de062d9f083ff4b4cb15167898890db (diff) | |
download | kmyfirewall-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.docbook | 12 |
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< TQString >* ) ), - this,SLOT( slotAddRuleOption(TQString*, QPtrList< TQString >* ) ) ); + connect( m_edit,TQ_SIGNAL(sigAddRuleOpt(TQString*, QPtrList< TQString >* ) ), + this,TQ_SLOT( slotAddRuleOption(TQString*, QPtrList< TQString >* ) ) ); // - //connect( m_edit,SIGNAL(sigAddTargetOpt(TQString*, QPtrList< TQString >* ) ), - // this,SLOT( slotAddTargetOption(TQString*, QPtrList< TQString >* ) ) ); - connect( m_edit,SIGNAL(sigHideMe() ), - this,SLOT( slotShowOverview() ) ); + //connect( m_edit,TQ_SIGNAL(sigAddTargetOpt(TQString*, QPtrList< TQString >* ) ), + // this,TQ_SLOT( slotAddTargetOption(TQString*, QPtrList< TQString >* ) ) ); + connect( m_edit,TQ_SIGNAL(sigHideMe() ), + this,TQ_SLOT( slotShowOverview() ) ); } KMFRuleOptionEditMAC::~KMFRuleOptionEditMAC() {} |