diff options
Diffstat (limited to 'kcontrol/css/template.h')
-rw-r--r-- | kcontrol/css/template.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kcontrol/css/template.h b/kcontrol/css/template.h index 2b701a238..bdcc8ad63 100644 --- a/kcontrol/css/template.h +++ b/kcontrol/css/template.h @@ -2,18 +2,18 @@ #define __TEMPLATE_H__ -#include <qstring.h> -#include <qmap.h> +#include <tqstring.h> +#include <tqmap.h> class CSSTemplate { public: - CSSTemplate(QString fname) : _filename(fname) {}; - bool expand(QString destname, const QMap<QString,QString> &dict); + CSSTemplate(TQString fname) : _filename(fname) {}; + bool expand(TQString destname, const TQMap<TQString,TQString> &dict); protected: - QString _filename; + TQString _filename; }; |