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/kdevplugin.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/kdevplugin.cpp')
| -rw-r--r-- | lib/interfaces/kdevplugin.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/lib/interfaces/kdevplugin.cpp b/lib/interfaces/kdevplugin.cpp index d110049f..5b4de199 100644 --- a/lib/interfaces/kdevplugin.cpp +++ b/lib/interfaces/kdevplugin.cpp @@ -36,8 +36,8 @@  #include <kglobal.h>  #include <kiconloader.h> -#include <qdom.h> -#include <qmap.h> +#include <tqdom.h> +#include <tqmap.h>  #include <assert.h> @@ -54,8 +54,8 @@ struct KDevPlugin::Private  // class KDevPlugin  /////////////////////////////////////////////////////////////////////////////// -KDevPlugin::KDevPlugin(const KDevPluginInfo *info, QObject *parent, const char *name) -    :QObject(parent, name), d(new Private) +KDevPlugin::KDevPlugin(const KDevPluginInfo *info, TQObject *parent, const char *name) +    :TQObject(parent, name), d(new Private)  {      assert(parent->inherits( "KDevApi" ));      m_api = static_cast<KDevApi *>( parent ); @@ -91,7 +91,7 @@ CodeModel *KDevPlugin::codeModel() const      return m_api->codeModel();  } -QDomDocument *KDevPlugin::projectDom() const +TQDomDocument *KDevPlugin::projectDom() const  {      return m_api->projectDom();  } @@ -111,12 +111,12 @@ KDevPluginController *KDevPlugin::pluginController() const      return m_api->pluginController();  } -void KDevPlugin::restorePartialProjectSession(const QDomElement* /*el*/) +void KDevPlugin::restorePartialProjectSession(const TQDomElement* /*el*/)  {      // there's still nothing to do in the base class  } -void KDevPlugin::savePartialProjectSession(QDomElement* /*el*/) +void KDevPlugin::savePartialProjectSession(TQDomElement* /*el*/)  {      // there's still nothing to do in the base class  } @@ -126,7 +126,7 @@ KDevCodeRepository * KDevPlugin::codeRepository() const      return m_api->codeRepository();  } -KDevPlugin * KDevPlugin::extension_internal(const QString &serviceType, const QString &constraint) +KDevPlugin * KDevPlugin::extension_internal(const TQString &serviceType, const TQString &constraint)  {      return m_api->pluginController()->extension(serviceType, constraint);  } | 
