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-31 22:18:23 +0900
commit79daa6a12bd88ee9b3283d43e6a3bcd955d39cd1 (patch)
treeb576c84d85d824994f7fdaf8c5412475a5c7c185 /src/kdiff3_shell.cpp
parent835702ea8d041b2521be63dfe0faf75ece29c7f7 (diff)
downloadkdiff3-79daa6a12bd88ee9b3283d43e6a3bcd955d39cd1.tar.gz
kdiff3-79daa6a12bd88ee9b3283d43e6a3bcd955d39cd1.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 2065ffa4d02f8a0a799cb7907879ba184949b52c)
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();
}