diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 | 
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 | 
| commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
| tree | d109539636691d7b03036ca1c0ed29dbae6577cf /lib/interfaces/kdevlanguagesupport.cpp | |
| parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
| download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip | |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/interfaces/kdevlanguagesupport.cpp')
| -rw-r--r-- | lib/interfaces/kdevlanguagesupport.cpp | 30 | 
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) | 
