diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:20:37 +0900 |
commit | b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/newprojectdlg.cpp | |
parent | 3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff) | |
download | kscope-b035a6c4.tar.gz kscope-b035a6c4.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/newprojectdlg.cpp')
-rw-r--r-- | src/newprojectdlg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/newprojectdlg.cpp b/src/newprojectdlg.cpp index da9cb38..ac2aa18 100644 --- a/src/newprojectdlg.cpp +++ b/src/newprojectdlg.cpp @@ -60,11 +60,11 @@ NewProjectDlg::NewProjectDlg(bool bNewProj, TQWidget* pParent, KFile::LocalOnly); // Set up the Create/Cancel buttons - connect(m_pCreateButton, SIGNAL(clicked()), this, SLOT(accept())); - connect(m_pCancelButton, SIGNAL(clicked()), this, SLOT(reject())); + connect(m_pCreateButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept())); + connect(m_pCancelButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(reject())); // Show the auto-completion properties dialogue - connect(m_pACButton, SIGNAL(clicked()), m_pAutoCompDlg, SLOT(exec())); + connect(m_pACButton, TQ_SIGNAL(clicked()), m_pAutoCompDlg, TQ_SLOT(exec())); // Perform actions specific to the type of dialog (new project or // project properties) @@ -306,8 +306,8 @@ AutoCompletionDlg::AutoCompletionDlg(TQWidget* pParent, const char* szName ) : AutoCompletionLayout(pParent, szName) { - 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())); } /** |