diff options
Diffstat (limited to 'kkbswitch/kbgroup.h')
-rw-r--r-- | kkbswitch/kbgroup.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kkbswitch/kbgroup.h b/kkbswitch/kbgroup.h index 0c5997c..3e5eb43 100644 --- a/kkbswitch/kbgroup.h +++ b/kkbswitch/kbgroup.h @@ -18,8 +18,8 @@ #ifndef KBGROUP_H #define KBGROUP_H -#include <qpixmap.h> -#include <qstring.h> +#include <ntqpixmap.h> +#include <ntqstring.h> /**A helper class the holds keyboard group's name and pixmap *@author Leonid Zeitlin @@ -27,22 +27,22 @@ class KBGroup { public: - KBGroup(const QString& name); + KBGroup(const TQString& name); ~KBGroup(); /** */ - const QPixmap& getPixmap() { return m_pixmap; } + const TQPixmap& getPixmap() { return m_pixmap; } /** No descriptions */ - const QString& getName() { return m_name; } + const TQString& getName() { return m_name; } /** No descriptions */ - void setPixmap(const QPixmap& pixmap) { m_pixmap = pixmap; } - const QString& getIconPath() { return m_iconpath; } - void setIconPath(const QString &iconpath) { m_iconpath = iconpath; } + void setPixmap(const TQPixmap& pixmap) { m_pixmap = pixmap; } + const TQString& getIconPath() { return m_iconpath; } + void setIconPath(const TQString &iconpath) { m_iconpath = iconpath; } private: // Private attributes /** */ - QString m_name; + TQString m_name; /** */ - QPixmap m_pixmap; - QString m_iconpath; + TQPixmap m_pixmap; + TQString m_iconpath; }; #endif |