diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:54:26 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-16 23:37:57 +0900 |
| commit | ef06f14f2475bd08d3ea2ceec54a7b2238f3554e (patch) | |
| tree | 03df826633e4ba084d133ca977c4fc37c74f21ac /karbon/tools/vspiraltool.cpp | |
| parent | 895081803a715ee89f4a90cfbf63d558ef2b2ebc (diff) | |
| download | koffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.tar.gz koffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 c414be41f..90b3b470c 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 ); |
