diff options
Diffstat (limited to 'src/kommandoview.h')
-rw-r--r-- | src/kommandoview.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/kommandoview.h b/src/kommandoview.h index 310cde2..9384e22 100644 --- a/src/kommandoview.h +++ b/src/kommandoview.h @@ -20,33 +20,33 @@ #ifndef KOMMANDOVIEW_H #define KOMMANDOVIEW_H -#include <qlistview.h> +#include <ntqlistview.h> /** @author Daniel Stöckel <[email protected]> */ -class KommandoView : public QListView +class KommandoView : public TQListView { public: - KommandoView(QWidget* parent, const QString& name); + KommandoView(TQWidget* parent, const TQString& name); - void setAppName(const QString& theValue){ m_AppName = theValue; } - QString appName() const{ return m_AppName; } + void setAppName(const TQString& theValue){ m_AppName = theValue; } + TQString appName() const{ return m_AppName; } private: - QString m_AppName; + TQString m_AppName; }; -class KommandoViewList : public QPtrList<KommandoView> +class KommandoViewList : public TQPtrList<KommandoView> { public: KommandoViewList(bool autoDelete = false); - bool contains(const QString& view); + bool contains(const TQString& view); - KommandoView* getView(const QString& view); - KommandoView* getViewOrDefault(const QString& view); - void removeView(const QString& view); + KommandoView* getView(const TQString& view); + KommandoView* getViewOrDefault(const TQString& view); + void removeView(const TQString& view); }; |