summaryrefslogtreecommitdiffstats
path: root/src/kdiff3_shell.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:27:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:27:29 +0900
commit2065ffa4d02f8a0a799cb7907879ba184949b52c (patch)
tree4fd65ff91aba795276930a1ef3a771d755e58567 /src/kdiff3_shell.cpp
parent1efbeb497b0498457a48efe0a4c0ea28a809effb (diff)
downloadkdiff3-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.cpp6
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();
}