diff options
author | Michele Calgaro <[email protected]> | 2023-07-22 23:33:11 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-22 23:33:11 +0900 |
commit | 7665c8d3f798aaf287ff14a35af74d9c303cb20c (patch) | |
tree | 00fd812583eed65f80d269255e8b662c90d1ddc7 /src/kommandoview.h | |
parent | 100a40e71a3f796a93675f9940c42ebe6429740e (diff) | |
download | kommando-7665c8d3f798aaf287ff14a35af74d9c303cb20c.tar.gz kommando-7665c8d3f798aaf287ff14a35af74d9c303cb20c.zip |
Raw Qt->TQt conversion using tde/scripts/conversions/qt3-tqt3/convert_existing_qt3_app_to_tq
Signed-off-by: Michele Calgaro <[email protected]>
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); }; |