From 1329ec6abbcb7b79cd960e0ca138f16598d5f11f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 13 Jan 2024 17:34:53 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- kpf/src/ServerWizard.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kpf/src/ServerWizard.cpp') 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. -- cgit v1.2.3