diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-31 22:20:37 +0900 |
commit | b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/cscopemsgdlg.cpp | |
parent | 3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff) | |
download | kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.tar.gz kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/cscopemsgdlg.cpp')
-rw-r--r-- | src/cscopemsgdlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cscopemsgdlg.cpp b/src/cscopemsgdlg.cpp index fe6bd87..469202f 100644 --- a/src/cscopemsgdlg.cpp +++ b/src/cscopemsgdlg.cpp @@ -38,10 +38,10 @@ CscopeMsgDlg::CscopeMsgDlg(TQWidget* pParent, const char* szName) : CscopeMsgLayout(pParent, szName, false, 0) { // Hide the dialog when the "Hide" button is clicked - connect(m_pHideButton, SIGNAL(clicked()), this, SLOT(hide())); + connect(m_pHideButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(hide())); // Clear all messages when the "Clear" button is clicked - connect(m_pClearButton, SIGNAL(clicked()), m_pMsgText, SLOT(clear())); + connect(m_pClearButton, TQ_SIGNAL(clicked()), m_pMsgText, TQ_SLOT(clear())); } /** |