diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 17:34:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-18 09:59:16 +0900 |
commit | 40393e30bb743346b6b40bf130da35419c12ebdc (patch) | |
tree | 9330d82486c7b3125b8275914565b324f9af523e /kpf/src/ServerWizard.cpp | |
parent | 05594058244ba6a1866d5758ae412fb5afd6d727 (diff) | |
download | tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.tar.gz tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f)
Diffstat (limited to 'kpf/src/ServerWizard.cpp')
-rw-r--r-- | kpf/src/ServerWizard.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kpf/src/ServerWizard.cpp b/kpf/src/ServerWizard.cpp index 0cf84fd5..38c6c15a 100644 --- a/kpf/src/ServerWizard.cpp +++ b/kpf/src/ServerWizard.cpp @@ -244,8 +244,8 @@ namespace KPF connect ( kur_root_, - TQT_SIGNAL(textChanged(const TQString &)), - TQT_SLOT(slotServerRootChanged(const TQString &)) + TQ_SIGNAL(textChanged(const TQString &)), + TQ_SLOT(slotServerRootChanged(const TQString &)) ); // Used for setting the caption on the file dialog. @@ -253,8 +253,8 @@ namespace KPF connect ( kur_root_, - TQT_SIGNAL(openFileDialog(KURLRequester *)), - TQT_SLOT(slotOpenFileDialog(KURLRequester *)) + TQ_SIGNAL(openFileDialog(KURLRequester *)), + TQ_SLOT(slotOpenFileDialog(KURLRequester *)) ); // This slot sets the 'Next' button on page 2 to enabled/disabled @@ -263,8 +263,8 @@ namespace KPF connect ( sb_listenPort_, - TQT_SIGNAL(valueChanged(int)), - TQT_SLOT(slotListenPortChanged(int)) + TQ_SIGNAL(valueChanged(int)), + TQ_SLOT(slotListenPortChanged(int)) ); // Update 'Next' button on page 1. |