diff options
Diffstat (limited to 'parts/regexptest/regexptestpart.cpp')
-rw-r--r-- | parts/regexptest/regexptestpart.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parts/regexptest/regexptestpart.cpp b/parts/regexptest/regexptestpart.cpp index 7b6b5193..8a3c8bd5 100644 --- a/parts/regexptest/regexptestpart.cpp +++ b/parts/regexptest/regexptestpart.cpp @@ -24,7 +24,7 @@ static const KDevPluginInfo data("kdevregexptest"); typedef KDevGenericFactory<RegexpTestPart> RegexpTestFactory; K_EXPORT_COMPONENT_FACTORY( libkdevregexptest, RegexpTestFactory( data ) ) -RegexpTestPart::RegexpTestPart(QObject *parent, const char *name, const QStringList &) +RegexpTestPart::RegexpTestPart(TQObject *parent, const char *name, const TQStringList &) : KDevPlugin(&data, parent, name ? name : "RegexpTestPart") { setInstance(RegexpTestFactory::instance()); @@ -33,12 +33,12 @@ RegexpTestPart::RegexpTestPart(QObject *parent, const char *name, const QStringL KAction *action; action = new KAction( i18n("Debug Regular Expression..."), 0, - this, SLOT(slotRegexpTest()), + this, TQT_SLOT(slotRegexpTest()), actionCollection(), "tools_regexptest" ); action->setToolTip(i18n("Debug regular expression")); action->setWhatsThis(i18n("<b>Debug regular expression</b><p>Allows to enter a regular expression " "and validate it. It is possible to check syntax of basic POSIX, extended POSIX " - "regular expressions and also syntax allowed by QRegExp and KRegExp classes.")); + "regular expressions and also syntax allowed by TQRegExp and KRegExp classes.")); m_dialog = 0; } |