diff options
Diffstat (limited to 'kommander/pluginmanager/pluginmanager.h')
-rw-r--r-- | kommander/pluginmanager/pluginmanager.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kommander/pluginmanager/pluginmanager.h b/kommander/pluginmanager/pluginmanager.h index 0c7c79b7..10bcc183 100644 --- a/kommander/pluginmanager/pluginmanager.h +++ b/kommander/pluginmanager/pluginmanager.h @@ -17,7 +17,7 @@ #ifndef __HAVE_PLUGINMANAGER_H #define __HAVE_PLUGINMANAGER_H -#include <qstringlist.h> +#include <tqstringlist.h> class KConfig; @@ -30,21 +30,21 @@ public: // number of known plugins int count() const; // n-th plugin - QString item(int i) const; + TQString item(int i) const; // adds a plugin if valid; // FIXME: if overwrite is true, plugin with the same base name will be removed - bool add(const QString& plugin, bool overwrite = true); + bool add(const TQString& plugin, bool overwrite = true); // removes given plugin - bool remove(const QString& plugin); + bool remove(const TQString& plugin); // remove invalid plugins, returns number of removed plugins int verify(); // list of plugins - QStringList items() const; + TQStringList items() const; private: // returns expanded library name or null if it is invalid - QString libraryName(const QString& plugin) const; + TQString libraryName(const TQString& plugin) const; - QStringList* m_list; + TQStringList* m_list; KConfig *m_cfg; }; |