diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:21:03 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 10:21:03 +0900 |
commit | 6df466c45ad202eea7d7401a2e5ff67ee783e272 (patch) | |
tree | c7eef2a16b5eda4152bb3445da2bf13408c6e9b3 /KMFSysTray/mainwidget.cpp | |
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 <[email protected]>
Diffstat (limited to 'KMFSysTray/mainwidget.cpp')
-rw-r--r-- | KMFSysTray/mainwidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/KMFSysTray/mainwidget.cpp b/KMFSysTray/mainwidget.cpp index 14387f5..dab8315 100644 --- a/KMFSysTray/mainwidget.cpp +++ b/KMFSysTray/mainwidget.cpp @@ -39,10 +39,10 @@ MainWidget::MainWidget(TQWidget* parent, const char* name, WFlags fl) m_ledActive->off(); m_cmd_info->setEnabled( false ); m_wid_details = new Details( 0 ); - connect( m_wid_details, TQT_SIGNAL( closing() ), this, TQT_SLOT ( slotDetailsClosed() ) ); - connect( this, TQT_SIGNAL( sigUpdateRuleCount( const TQString&, const TQString&, int ) ), - m_wid_details, TQT_SLOT( slotUpdateRuleCount( const TQString&, const TQString&, int ) ) ); - connect( m_cmd_info, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotShowDetails() ) ) ; + connect( m_wid_details, TQ_SIGNAL( closing() ), this, TQ_SLOT ( slotDetailsClosed() ) ); + connect( this, TQ_SIGNAL( sigUpdateRuleCount( const TQString&, const TQString&, int ) ), + m_wid_details, TQ_SLOT( slotUpdateRuleCount( const TQString&, const TQString&, int ) ) ); + connect( m_cmd_info, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotShowDetails() ) ) ; } MainWidget::~MainWidget() |