diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmpluginmanager.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmpluginmanager.h')
-rw-r--r-- | kpovmodeler/pmpluginmanager.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kpovmodeler/pmpluginmanager.h b/kpovmodeler/pmpluginmanager.h index 9424e014..364658a0 100644 --- a/kpovmodeler/pmpluginmanager.h +++ b/kpovmodeler/pmpluginmanager.h @@ -20,8 +20,8 @@ #include <kstaticdeleter.h> -#include <qstring.h> -#include <qptrlist.h> +#include <tqstring.h> +#include <tqptrlist.h> class PMPart; @@ -34,7 +34,7 @@ public: /** * Default constructor */ - PMPluginInfo( const QString& name, const QString& description, + PMPluginInfo( const TQString& name, const TQString& description, bool enabled ) { m_name = name; @@ -44,11 +44,11 @@ public: /** * Returns the plugin name */ - QString name( ) const { return m_name; } + TQString name( ) const { return m_name; } /** * Returns the plugin description (i18n'ed) */ - QString description( ) const { return m_description; } + TQString description( ) const { return m_description; } /** * Returns true if the plugin is enabled */ @@ -58,7 +58,7 @@ public: */ void enable( bool en ) { m_enabled = en; } private: - QString m_name, m_description; + TQString m_name, m_description; bool m_enabled; }; @@ -91,7 +91,7 @@ public: /** * Returns a list of available plugins */ - QPtrList<PMPluginInfo> plugins( ) const { return m_plugins; } + TQPtrList<PMPluginInfo> plugins( ) const { return m_plugins; } /** * Loads and unloads plugins for all parts when plugins were activated or * deactivated @@ -103,8 +103,8 @@ private: */ PMPluginManager( ); - QPtrList<PMPluginInfo> m_plugins; - QPtrList<PMPart> m_parts; + TQPtrList<PMPluginInfo> m_plugins; + TQPtrList<PMPart> m_parts; static PMPluginManager* s_pInstance; static KStaticDeleter<PMPluginManager> s_staticDeleter; |