From 11f3716a1c82b43f92dc32083101558f3ec47f27 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Dec 2023 16:37:45 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/preferencesdlg.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/preferencesdlg.cpp') diff --git a/src/preferencesdlg.cpp b/src/preferencesdlg.cpp index 983c3c2..a0810f4 100644 --- a/src/preferencesdlg.cpp +++ b/src/preferencesdlg.cpp @@ -93,11 +93,11 @@ PreferencesDlg::PreferencesDlg(uint nPage, TQWidget* pParent, enableButtonApply(false); // Enable the "Apply" button when a parameter changes its value - connect(m_pPrefFrontend, SIGNAL(modified()), this, - SLOT(slotModified())); - connect(m_pPrefColor, SIGNAL(modified()), this, SLOT(slotModified())); - connect(m_pPrefFont, SIGNAL(modified()), this, SLOT(slotModified())); - connect(m_pPrefOpt, SIGNAL(modified()), this, SLOT(slotModified())); + connect(m_pPrefFrontend, TQ_SIGNAL(modified()), this, + TQ_SLOT(slotModified())); + connect(m_pPrefColor, TQ_SIGNAL(modified()), this, TQ_SLOT(slotModified())); + connect(m_pPrefFont, TQ_SIGNAL(modified()), this, TQ_SLOT(slotModified())); + connect(m_pPrefOpt, TQ_SIGNAL(modified()), this, TQ_SLOT(slotModified())); // Set the active page showPage(nPage); -- cgit v1.2.3