diff options
Diffstat (limited to 'kopete/kopete/chatwindow/kopetechatwindowstylemanager.h')
-rw-r--r-- | kopete/kopete/chatwindow/kopetechatwindowstylemanager.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/kopete/chatwindow/kopetechatwindowstylemanager.h b/kopete/kopete/chatwindow/kopetechatwindowstylemanager.h index 4b21c79b..dcc56cf0 100644 --- a/kopete/kopete/chatwindow/kopetechatwindowstylemanager.h +++ b/kopete/kopete/chatwindow/kopetechatwindowstylemanager.h @@ -18,8 +18,8 @@ #ifndef KOPETECHATWINDOWSTYLEMANAGER_H #define KOPETECHATWINDOWSTYLEMANAGER_H -#include <qobject.h> -#include <qmap.h> +#include <tqobject.h> +#include <tqmap.h> #include <kfileitem.h> #include <kopete_export.h> @@ -46,11 +46,11 @@ class KOPETE_EXPORT ChatWindowStyleManager : public QObject Q_OBJECT public: /** - * StyleList typedef (a QMap) + * StyleList typedef (a TQMap) * key = Name of the style (currently the directory name) * value = Path to the style */ - typedef QMap<QString, QString> StyleList; + typedef TQMap<TQString, TQString> StyleList; /** * The StyleInstallStatus enum. It gives better return value for installStyle(). @@ -92,7 +92,7 @@ public slots: * @param styleBundlePath Path to the container file to install. * @return A status code from StyleInstallStatus enum. */ - int installStyle(const QString &styleBundlePath); + int installStyle(const TQString &styleBundlePath); /** * Remove a style from user style directory @@ -100,7 +100,7 @@ public slots: * @param stylePath the path of the style to remove. * @return true if the deletion went without problems. */ - bool removeStyle(const QString &stylePath); + bool removeStyle(const TQString &stylePath); /** * Get a instance of a ChatWindowStyle from the pool. @@ -110,7 +110,7 @@ public slots: * @param stylePath Path for the specified style. Name can be ambigous. * @return the instance of ChatWindow for the specified style. DO NOT DELETE IT. */ - ChatWindowStyle *getStyleFromPool(const QString &stylePath); + ChatWindowStyle *getStyleFromPool(const TQString &stylePath); signals: /** @@ -136,7 +136,7 @@ private: * Private constructor(it's a singleton class) * Call loadStyles() to list all avaiable styles. */ - ChatWindowStyleManager(QObject *parent = 0, const char *name = 0); + ChatWindowStyleManager(TQObject *parent = 0, const char *name = 0); static ChatWindowStyleManager *s_self; |