diff options
Diffstat (limited to 'karbon/tools/vellipsetool.h')
-rw-r--r-- | karbon/tools/vellipsetool.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/karbon/tools/vellipsetool.h b/karbon/tools/vellipsetool.h index d30e3411..f0276779 100644 --- a/karbon/tools/vellipsetool.h +++ b/karbon/tools/vellipsetool.h @@ -22,20 +22,21 @@ #include <kdialogbase.h> -#include "vshapetool.h" +#include "vtqshapetool.h" class KoUnitDoubleSpinBox; class KComboBox; class KIntSpinBox; class KarbonView; -class QLabel; -class QWidget; +class TQLabel; +class TQWidget; class VEllipseOptionsWidget : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - VEllipseOptionsWidget( KarbonPart *part, QWidget *parent = 0L, const char *name = 0L ); + VEllipseOptionsWidget( KarbonPart *part, TQWidget *tqparent = 0L, const char *name = 0L ); double width() const; double height() const; @@ -56,8 +57,8 @@ private: KoUnitDoubleSpinBox *m_width; KoUnitDoubleSpinBox *m_height; KarbonPart *m_part; - QLabel *m_heightLabel; - QLabel *m_widthLabel; + TQLabel *m_heightLabel; + TQLabel *m_widthLabel; }; class VEllipseTool : public VShapeTool @@ -68,8 +69,8 @@ public: virtual void setup(KActionCollection *collection); virtual bool showDialog() const; - virtual QString uiname() { return i18n( "Ellipse Tool" ); } - virtual VPath *shape( bool interactive = false ) const; + virtual TQString uiname() { return i18n( "Ellipse Tool" ); } + virtual VPath *tqshape( bool interactive = false ) const; void refreshUnit(); protected: |