diff options
Diffstat (limited to 'karbon/tools/vspiraltool.cpp')
-rw-r--r-- | karbon/tools/vspiraltool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/karbon/tools/vspiraltool.cpp b/karbon/tools/vspiraltool.cpp index c414be41..90b3b470 100644 --- a/karbon/tools/vspiraltool.cpp +++ b/karbon/tools/vspiraltool.cpp @@ -34,7 +34,7 @@ VSpiralTool::VSpiralOptionsWidget::VSpiralOptionsWidget( KarbonPart *part, TQWidget* parent, const char* name ) : KDialogBase( parent, name, true, i18n( "Insert Spiral" ), Ok | Cancel ), m_part( part ) { - TQGroupBox *group = new TQGroupBox( 2, Qt::Horizontal, i18n( "Properties" ), this ); + TQGroupBox *group = new TQGroupBox( 2, TQt::Horizontal, i18n( "Properties" ), this ); new TQLabel( i18n( "Type:" ), group ); m_type = new KComboBox( false, group ); @@ -51,7 +51,7 @@ VSpiralTool::VSpiralOptionsWidget::VSpiralOptionsWidget( KarbonPart *part, TQWid m_fade = new KDoubleNumInput( group ); m_fade->setRange( 0.0, 1.0, 0.05 ); - new TQLabel( i18n( "Qt::Orientation:" ), group ); + new TQLabel( i18n( "Orientation:" ), group ); m_clockwise = new KComboBox( false, group ); m_clockwise->insertItem( i18n( "Clockwise" ), 0 ); m_clockwise->insertItem( i18n( "Counter Clockwise" ), 1 ); |