diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:21:03 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:42:58 +0900 |
commit | 66b3326a362344f722a8fbe52534e3d114005660 (patch) | |
tree | afcfd7107aeb48499a618a85efb53bb43e23941d /KMFSysTray/mainwidget.cpp | |
parent | 38392cfb973f23a1433d7855dc7f4325515926d0 (diff) | |
download | kmyfirewall-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 '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() |