diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
commit | 28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c (patch) | |
tree | a2f011f22aa31d0839c6e2118501b7a6d2f2ae96 /kmag/kmag.h | |
parent | 0285229d858c8f03cde7354c679a752598cf4515 (diff) | |
download | tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.tar.gz tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1157633 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmag/kmag.h')
-rw-r--r-- | kmag/kmag.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmag/kmag.h b/kmag/kmag.h index bfd2e31..6a27f03 100644 --- a/kmag/kmag.h +++ b/kmag/kmag.h @@ -30,7 +30,7 @@ #include <vector> // include files for Qt -#include <qstringlist.h> +#include <tqstringlist.h> // include files for KDE #include <kapplication.h> @@ -62,7 +62,7 @@ class KmagApp : public KMainWindow /** * Construtor of KmagApp, calls all init functions to create the application. */ - KmagApp(QWidget* parent=0, const char* name=0); + KmagApp(TQWidget* parent=0, const char* name=0); /// Default destructor ~KmagApp(); @@ -160,7 +160,7 @@ class KmagApp : public KMainWindow /// Called when "configure toolbar" is clicked void slotEditToolbars(); - void contextMenu(QPoint pos); + void contextMenu(TQPoint pos); signals: /// This signal is raised whenever the index into the zoom array is changed @@ -213,13 +213,13 @@ class KmagApp : public KMainWindow /// Current index into the fpsArray unsigned int m_fpsIndex; - QStringList zoomArrayString; + TQStringList zoomArrayString; std::vector<float> zoomArray; - QStringList rotationArrayString; + TQStringList rotationArrayString; std::vector<int> rotationArray; - QStringList fpsArrayString; + TQStringList fpsArrayString; std::vector<float> fpsArray; KMagZoomView* m_zoomView; |