summaryrefslogtreecommitdiffstats
path: root/lib/interfaces/kdevlanguagesupport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/interfaces/kdevlanguagesupport.cpp')
-rw-r--r--lib/interfaces/kdevlanguagesupport.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/interfaces/kdevlanguagesupport.cpp b/lib/interfaces/kdevlanguagesupport.cpp
index ab171bb1..9b3cc40b 100644
--- a/lib/interfaces/kdevlanguagesupport.cpp
+++ b/lib/interfaces/kdevlanguagesupport.cpp
@@ -29,7 +29,7 @@
#include "kdevdesignerintegration.h"
#include "kdevlanguagesupport.h"
-KDevLanguageSupport::KDevLanguageSupport(const KDevPluginInfo *info, QObject *parent, const char *name)
+KDevLanguageSupport::KDevLanguageSupport(const KDevPluginInfo *info, TQObject *parent, const char *name)
: KDevPlugin(info, parent, name ? name : "KDevLanguageSupport" )
{
}
@@ -48,17 +48,17 @@ KMimeType::List KDevLanguageSupport::mimeTypes()
return KMimeType::List();
}
-QString KDevLanguageSupport::formatTag( const Tag& /*tag*/ )
+TQString KDevLanguageSupport::formatTag( const Tag& /*tag*/ )
{
- return QString::null;
+ return TQString::null;
}
-QString KDevLanguageSupport::formatClassName(const QString &name)
+TQString KDevLanguageSupport::formatClassName(const TQString &name)
{
return name;
}
-QString KDevLanguageSupport::unformatClassName(const QString &name)
+TQString KDevLanguageSupport::unformatClassName(const TQString &name)
{
return name;
}
@@ -89,22 +89,22 @@ void KDevLanguageSupport::addAttribute( ClassDom /*klass*/ )
{
}
-QStringList KDevLanguageSupport::subclassWidget(const QString& /*formName*/)
+TQStringList KDevLanguageSupport::subclassWidget(const TQString& /*formName*/)
{
- return QStringList();
+ return TQStringList();
}
-QStringList KDevLanguageSupport::updateWidget(const QString& /*formName*/, const QString& /*fileName*/)
+TQStringList KDevLanguageSupport::updateWidget(const TQString& /*formName*/, const TQString& /*fileName*/)
{
- return QStringList();
+ return TQStringList();
}
-QString KDevLanguageSupport::formatModelItem( const CodeModelItem *item, bool /*shortDescription*/ )
+TQString KDevLanguageSupport::formatModelItem( const CodeModelItem *item, bool /*shortDescription*/ )
{
return item->name();
}
-void KDevLanguageSupport::addFunction( DesignerType type, const QString & formName, Function function )
+void KDevLanguageSupport::addFunction( DesignerType type, const TQString & formName, Function function )
{
// kdDebug() << "KDevLanguageSupport::addFunction: 1" << endl;
KDevDesignerIntegration *designerIntegration = designer(type);
@@ -119,7 +119,7 @@ void KDevLanguageSupport::addFunction( DesignerType type, const QString & formNa
// kdDebug() << "KDevLanguageSupport::addFunction: 4" << endl;
}
-void KDevLanguageSupport::editFunction( DesignerType type, const QString & formName, Function oldFunction, Function function )
+void KDevLanguageSupport::editFunction( DesignerType type, const TQString & formName, Function oldFunction, Function function )
{
KDevDesignerIntegration *designerIntegration = designer(type);
if (!designerIntegration)
@@ -127,7 +127,7 @@ void KDevLanguageSupport::editFunction( DesignerType type, const QString & formN
designerIntegration->editFunction(formName, oldFunction, function);
}
-void KDevLanguageSupport::removeFunction( DesignerType type, const QString & formName, Function function )
+void KDevLanguageSupport::removeFunction( DesignerType type, const TQString & formName, Function function )
{
KDevDesignerIntegration *designerIntegration = designer(type);
if (!designerIntegration)
@@ -141,7 +141,7 @@ KDevDesignerIntegration * KDevLanguageSupport::designer( DesignerType // type
return 0;
}
-void KDevLanguageSupport::openFunction( DesignerType type, const QString & formName, const QString & functionName )
+void KDevLanguageSupport::openFunction( DesignerType type, const TQString & formName, const TQString & functionName )
{
KDevDesignerIntegration *designerIntegration = designer(type);
if (!designerIntegration)
@@ -155,7 +155,7 @@ void KDevLanguageSupport::createAccessMethods( ClassDom // theClass
{
}
-void KDevLanguageSupport::openSource( DesignerType type, const QString & formName)
+void KDevLanguageSupport::openSource( DesignerType type, const TQString & formName)
{
KDevDesignerIntegration *designerIntegration = designer(type);
if (!designerIntegration)