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 /kpovmodeler/pmcameraedit.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 'kpovmodeler/pmcameraedit.h')
-rw-r--r-- | kpovmodeler/pmcameraedit.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kpovmodeler/pmcameraedit.h b/kpovmodeler/pmcameraedit.h index 7b787683..a9ed5ee9 100644 --- a/kpovmodeler/pmcameraedit.h +++ b/kpovmodeler/pmcameraedit.h @@ -25,15 +25,15 @@ #endif #include "pmnamedobjectedit.h" -#include <qptrlist.h> +#include <tqptrlist.h> class PMCamera; class PMVectorEdit; class PMFloatEdit; class PMIntEdit; -class QComboBox; -class QLabel; -class QCheckBox; +class TQComboBox; +class TQLabel; +class TQCheckBox; /** * Dialog edit class for @ref PMCamera @@ -46,7 +46,7 @@ public: /** * Creates a PMCameraEdit with parent and name */ - PMCameraEdit( QWidget* parent, const char* name = 0 ); + PMCameraEdit( TQWidget* parent, const char* name = 0 ); /** */ virtual void displayObject( PMObject* o ); @@ -80,19 +80,19 @@ private: PMVectorEdit* m_pUp; PMVectorEdit* m_pSky; PMVectorEdit* m_pLookAt; - QCheckBox* m_pEnableAngle; + TQCheckBox* m_pEnableAngle; PMFloatEdit* m_pAngle; - QComboBox* m_pCameraType; - QComboBox* m_pCylinderType; - QLabel* m_pCylinderTypeLabel; - QCheckBox* m_pFocalBlur; + TQComboBox* m_pCameraType; + TQComboBox* m_pCylinderType; + TQLabel* m_pCylinderTypeLabel; + TQCheckBox* m_pFocalBlur; PMFloatEdit* m_pAperture; PMIntEdit* m_pBlurSamples; PMVectorEdit* m_pFocalPoint; PMFloatEdit* m_pConfidence; PMFloatEdit* m_pVariance; - QPtrList<QWidget> m_focalWidgets; - QCheckBox* m_pExport; + TQPtrList<TQWidget> m_focalWidgets; + TQCheckBox* m_pExport; }; |