diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:49:52 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:49:52 +0000 |
commit | cfc42a28c327b96c6a2afee92af3bac1a479eb8a (patch) | |
tree | e3219edf5f827eaa4db3feb509a17846a1a5a752 /amor/amordialog.h | |
parent | a73fc4d7e66fe0824313aa4e9a650c4cddef6e9f (diff) | |
download | tdetoys-cfc42a28c327b96c6a2afee92af3bac1a479eb8a.tar.gz tdetoys-cfc42a28c327b96c6a2afee92af3bac1a479eb8a.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdetoys@1157650 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amor/amordialog.h')
-rw-r--r-- | amor/amordialog.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/amor/amordialog.h b/amor/amordialog.h index 59e639d..2f978fd 100644 --- a/amor/amordialog.h +++ b/amor/amordialog.h @@ -27,10 +27,10 @@ #ifndef AMORDIALOG_H #define AMORDIALOG_H -#include <qdialog.h> -#include <qlistbox.h> -#include <qptrlist.h> -#include <qmultilineedit.h> +#include <tqdialog.h> +#include <tqlistbox.h> +#include <tqptrlist.h> +#include <tqmultilineedit.h> #include "amorconfig.h" #include <kdialogbase.h> @@ -72,13 +72,13 @@ protected slots: protected: void readThemes(); - void addTheme(const QString& file); + void addTheme(const TQString& file); protected: - QListBox *mThemeListBox; - QMultiLineEdit *mAboutEdit; - QStringList mThemes; - QStringList mThemeAbout; + TQListBox *mThemeListBox; + TQMultiLineEdit *mAboutEdit; + TQStringList mThemes; + TQStringList mThemeAbout; AmorConfig mConfig; }; @@ -89,18 +89,18 @@ protected: class AmorListBoxItem : public QListBoxItem { public: - AmorListBoxItem(const QString & s, const QPixmap& p) - : QListBoxItem(), mPixmap(p) + AmorListBoxItem(const TQString & s, const TQPixmap& p) + : TQListBoxItem(), mPixmap(p) { setText(s); } protected: - virtual void paint(QPainter *); - virtual int height(const QListBox *) const; - virtual int width(const QListBox *) const; - virtual const QPixmap *pixmap() const { return &mPixmap; } + virtual void paint(TQPainter *); + virtual int height(const TQListBox *) const; + virtual int width(const TQListBox *) const; + virtual const TQPixmap *pixmap() const { return &mPixmap; } private: - QPixmap mPixmap; + TQPixmap mPixmap; }; #endif // AMORDIALOG_H |