summaryrefslogtreecommitdiffstats
path: root/src/searchresultsdlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:37:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:20:37 +0900
commitb035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch)
tree0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/searchresultsdlg.cpp
parent3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff)
downloadkscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.tar.gz
kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/searchresultsdlg.cpp')
-rw-r--r--src/searchresultsdlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/searchresultsdlg.cpp b/src/searchresultsdlg.cpp
index c6183d6..d6e6196 100644
--- a/src/searchresultsdlg.cpp
+++ b/src/searchresultsdlg.cpp
@@ -64,8 +64,8 @@ SearchResultsDlg::SearchResultsDlg(TQWidget* pParent, const char* szName) :
// Terminate the dialogue when either the "OK" or "Cancel" buttons are
// clicked
- connect(m_pOKButton, SIGNAL(clicked()), this, SLOT(accept()));
- connect(m_pCancelButton, SIGNAL(clicked()), this, SLOT(reject()));
+ connect(m_pOKButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept()));
+ connect(m_pCancelButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(reject()));
}
/**