diff options
author | Michele Calgaro <[email protected]> | 2024-01-13 17:34:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-13 17:51:33 +0900 |
commit | 1329ec6abbcb7b79cd960e0ca138f16598d5f11f (patch) | |
tree | 8b64fab3a352aada6a046f69f1f7e8a6ad819594 /kget/dlgPreferences.cpp | |
parent | 69c2eb8d5f2ed64c876b2a1081cc83ed9f4652d3 (diff) | |
download | tdenetwork-1329ec6abbcb7b79cd960e0ca138f16598d5f11f.tar.gz tdenetwork-1329ec6abbcb7b79cd960e0ca138f16598d5f11f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kget/dlgPreferences.cpp')
-rw-r--r-- | kget/dlgPreferences.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kget/dlgPreferences.cpp b/kget/dlgPreferences.cpp index 777f5419..b27e4772 100644 --- a/kget/dlgPreferences.cpp +++ b/kget/dlgPreferences.cpp @@ -95,16 +95,16 @@ DlgPreferences::DlgPreferences(TQWidget * parent): topLayout->addStretch(); // type of connection influences autoDisconnect & timedDisconnect features - connect(conDlg, TQT_SIGNAL(typeChanged(int)), autDlg, TQT_SLOT(slotTypeChanged(int))); + connect(conDlg, TQ_SIGNAL(typeChanged(int)), autDlg, TQ_SLOT(slotTypeChanged(int))); loadAllData(); - connect( conDlg, TQT_SIGNAL( configChanged() ), this, TQT_SLOT( slotChanged() ) ); - connect( autDlg, TQT_SIGNAL( configChanged() ), this, TQT_SLOT( slotChanged() ) ); - connect( limDlg, TQT_SIGNAL( configChanged() ), this, TQT_SLOT( slotChanged() ) ); - connect( advDlg, TQT_SIGNAL( configChanged() ), this, TQT_SLOT( slotChanged() ) ); - connect( dirDlg, TQT_SIGNAL( configChanged() ), this, TQT_SLOT( slotChanged() ) ); - connect( sysDlg, TQT_SIGNAL( configChanged() ), this, TQT_SLOT( slotChanged() ) ); + connect( conDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) ); + connect( autDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) ); + connect( limDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) ); + connect( advDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) ); + connect( dirDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) ); + connect( sysDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) ); } |