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/prefopt.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 <michele.calgaro@yahoo.it>
(cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/prefopt.cpp')
-rw-r--r-- | src/prefopt.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/prefopt.cpp b/src/prefopt.cpp index 2610eff..c195d36 100644 --- a/src/prefopt.cpp +++ b/src/prefopt.cpp @@ -46,24 +46,24 @@ PrefOpt::PrefOpt(TQWidget* pParent, const char* szName) // Emit the "modified" signal whenever any of the widgets changes its // its. This will notify the parent dialogue to enable its "Apply" // button - connect(m_pReadOnlyCheck, SIGNAL(toggled(bool)), this, - SIGNAL(modified())); - connect(m_pLastProjCheck, SIGNAL(toggled(bool)), this, - SIGNAL(modified())); - connect(m_pTagHlCheck, SIGNAL(toggled(bool)), this, - SIGNAL(modified())); - connect(m_pBriefQueryCaptCheck, SIGNAL(toggled(bool)), this, - SIGNAL(modified())); - connect(m_pWarnModifiedOnDiskCheck, SIGNAL(toggled(bool)), this, - SIGNAL(modified())); - connect(m_pAutoSortCheck, SIGNAL(toggled(bool)), this, - SIGNAL(modified())); - connect(m_pExtEditorEdit, SIGNAL(textChanged(const TQString&)), this, - SIGNAL(modified())); - connect(m_pSysProfileCB, SIGNAL(activated(int)), this, - SIGNAL(modified())); - connect(m_pEditorPopupCB, SIGNAL(activated(int)), this, - SIGNAL(modified())); + connect(m_pReadOnlyCheck, TQ_SIGNAL(toggled(bool)), this, + TQ_SIGNAL(modified())); + connect(m_pLastProjCheck, TQ_SIGNAL(toggled(bool)), this, + TQ_SIGNAL(modified())); + connect(m_pTagHlCheck, TQ_SIGNAL(toggled(bool)), this, + TQ_SIGNAL(modified())); + connect(m_pBriefQueryCaptCheck, TQ_SIGNAL(toggled(bool)), this, + TQ_SIGNAL(modified())); + connect(m_pWarnModifiedOnDiskCheck, TQ_SIGNAL(toggled(bool)), this, + TQ_SIGNAL(modified())); + connect(m_pAutoSortCheck, TQ_SIGNAL(toggled(bool)), this, + TQ_SIGNAL(modified())); + connect(m_pExtEditorEdit, TQ_SIGNAL(textChanged(const TQString&)), this, + TQ_SIGNAL(modified())); + connect(m_pSysProfileCB, TQ_SIGNAL(activated(int)), this, + TQ_SIGNAL(modified())); + connect(m_pEditorPopupCB, TQ_SIGNAL(activated(int)), this, + TQ_SIGNAL(modified())); } /** |