diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:27:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:27:29 +0900 |
commit | 2065ffa4d02f8a0a799cb7907879ba184949b52c (patch) | |
tree | 4fd65ff91aba795276930a1ef3a771d755e58567 /src/kdiff3_shell.cpp | |
parent | 1efbeb497b0498457a48efe0a4c0ea28a809effb (diff) | |
download | kdiff3-2065ffa4d02f8a0a799cb7907879ba184949b52c.tar.gz kdiff3-2065ffa4d02f8a0a799cb7907879ba184949b52c.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kdiff3_shell.cpp')
-rw-r--r-- | src/kdiff3_shell.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kdiff3_shell.cpp b/src/kdiff3_shell.cpp index 870a44b..f740c3b 100644 --- a/src/kdiff3_shell.cpp +++ b/src/kdiff3_shell.cpp @@ -68,7 +68,7 @@ KDiff3Shell::KDiff3Shell(bool bCompleteInit) if (bCompleteInit) ((KDiff3App*)m_part->widget())->completeInit(); - connect(((KDiff3App*)m_part->widget()), TQT_SIGNAL(createNewInstance(const TQString&, const TQString&, const TQString&)), this, TQT_SLOT(slotNewInstance(const TQString&, const TQString&, const TQString&))); + connect(((KDiff3App*)m_part->widget()), TQ_SIGNAL(createNewInstance(const TQString&, const TQString&, const TQString&)), this, TQ_SLOT(slotNewInstance(const TQString&, const TQString&, const TQString&))); } } else @@ -164,8 +164,8 @@ void KDiff3Shell::optionsConfigureToolbars() // use the standard toolbar editor KEditToolbar dlg(factory()); - connect(&dlg, TQT_SIGNAL(newToolbarConfig()), - this, TQT_SLOT(applyNewToolbarConfig())); + connect(&dlg, TQ_SIGNAL(newToolbarConfig()), + this, TQ_SLOT(applyNewToolbarConfig())); dlg.exec(); } |