diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
commit | 0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch) | |
tree | 2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kgeography/src/popupmanager.h | |
parent | 83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff) | |
download | tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kgeography/src/popupmanager.h')
-rw-r--r-- | kgeography/src/popupmanager.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kgeography/src/popupmanager.h b/kgeography/src/popupmanager.h index 8fdfeef7..b66d574d 100644 --- a/kgeography/src/popupmanager.h +++ b/kgeography/src/popupmanager.h @@ -11,7 +11,7 @@ #ifndef POPUPMANAGER_H #define POPUPMANAGER_H -#include <qobject.h> +#include <tqobject.h> class QWidget; @@ -21,25 +21,25 @@ class popupManager : public QObject { Q_OBJECT public: - popupManager(QWidget *parent); + popupManager(TQWidget *parent); // shows text at p and the flag - void show(const QString &text, const QString &text2, const QPoint &p, const QString &flagFile); + void show(const TQString &text, const TQString &text2, const TQPoint &p, const TQString &flagFile); // shows text at p - void show(const QString &text, const QString &text2, const QPoint &p); + void show(const TQString &text, const TQString &text2, const TQPoint &p); // shows text at p - void show(const QString &text, const QPoint &p); + void show(const TQString &text, const TQPoint &p); public slots: void clear(); private: - void init(const QPoint &p); + void init(const TQPoint &p); myPopup *p_mp; - QWidget *p_parent; + TQWidget *p_parent; }; #endif |