diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kviewshell/pageSizeWidget.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kviewshell/pageSizeWidget.h')
-rw-r--r-- | kviewshell/pageSizeWidget.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kviewshell/pageSizeWidget.h b/kviewshell/pageSizeWidget.h index 76cc0d02..ac95dd4e 100644 --- a/kviewshell/pageSizeWidget.h +++ b/kviewshell/pageSizeWidget.h @@ -14,19 +14,19 @@ #include "pageSize.h" #include "pageSizeWidget_base.h" -class QDoubleValidator; +class TQDoubleValidator; class pageSizeWidget : public pageSizeWidget_base { Q_OBJECT public: - pageSizeWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); + pageSizeWidget( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); // Sets the page size. If the dialog is already shown, updates all // the GUI. Accepts the same strings as input as the setPageSize() // method of the pageSize() class. - void setPageSize(const QString&); + void setPageSize(const TQString&); void setOrientation(int ori); @@ -40,13 +40,13 @@ protected slots: // the fillTextFields() slot. void unitsChanged(int); void orientationChanged(int = 0); - void input(const QString &); + void input(const TQString &); private: pageSize chosenSize; - QDoubleValidator *widthValidator; - QDoubleValidator *heightValidator; + TQDoubleValidator *widthValidator; + TQDoubleValidator *heightValidator; }; #endif // PAGESIZEWIDGET_H |