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 /kig/misc/kiginputdialog.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 'kig/misc/kiginputdialog.h')
-rw-r--r-- | kig/misc/kiginputdialog.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kig/misc/kiginputdialog.h b/kig/misc/kiginputdialog.h index afdd303d..28d5ae83 100644 --- a/kig/misc/kiginputdialog.h +++ b/kig/misc/kiginputdialog.h @@ -45,11 +45,11 @@ Q_OBJECT public: private: - KigInputDialog( const QString& caption, const QString& label, QWidget* parent, + KigInputDialog( const TQString& caption, const TQString& label, TQWidget* parent, const KigDocument& doc, Coordinate* c1, Coordinate* c2 ); - KigInputDialog( QWidget* parent, const Goniometry& g ); + KigInputDialog( TQWidget* parent, const Goniometry& g ); - virtual void keyPressEvent( QKeyEvent* e ); + virtual void keyPressEvent( TQKeyEvent* e ); KigInputDialogPrivate* const d; friend class KInputDialogPrivate; @@ -59,9 +59,9 @@ private: Goniometry goniometry() const; private slots: - void slotCoordsChanged( const QString& ); + void slotCoordsChanged( const TQString& ); void slotGonioSystemChanged( int index ); - void slotGonioTextChanged( const QString& txt ); + void slotGonioTextChanged( const TQString& txt ); public: /** @@ -78,8 +78,8 @@ public: * here. If this points to a valid Coordinate, then it will be * displayed as initial value of the correspondenting text edit */ - static void getCoordinate( const QString& caption, const QString& label, - QWidget* parent, bool* ok, const KigDocument& doc, Coordinate* cvalue ); + static void getCoordinate( const TQString& caption, const TQString& label, + TQWidget* parent, bool* ok, const KigDocument& doc, Coordinate* cvalue ); /** * Static convenience function to get two Coordinates at once from the user. @@ -101,8 +101,8 @@ public: * Coordinate, then it will be displayed as initial value of * the text edit representing the second Coordinate. */ - static void getTwoCoordinates( const QString& caption, const QString& label, - QWidget* parent, bool* ok, const KigDocument& doc, Coordinate* cvalue, + static void getTwoCoordinates( const TQString& caption, const TQString& label, + TQWidget* parent, bool* ok, const KigDocument& doc, Coordinate* cvalue, Coordinate* cvalue2 ); /** @@ -117,7 +117,7 @@ public: * * \return a Goniometry class containing the new angle */ - static Goniometry getAngle( QWidget* parent, bool* ok, const Goniometry& g ); + static Goniometry getAngle( TQWidget* parent, bool* ok, const Goniometry& g ); }; #endif |