diff options
Diffstat (limited to 'lib/kofficeui/KoGuideLineDia.cpp')
-rw-r--r-- | lib/kofficeui/KoGuideLineDia.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kofficeui/KoGuideLineDia.cpp b/lib/kofficeui/KoGuideLineDia.cpp index 9f49d062..740a7191 100644 --- a/lib/kofficeui/KoGuideLineDia.cpp +++ b/lib/kofficeui/KoGuideLineDia.cpp @@ -57,7 +57,7 @@ KoGuideLineDia::KoGuideLineDia( TQWidget *parent, KoPoint &pos, KoRect &rect, setCaption( i18n("Add Guide Line") ); TQVBox * vbox = makeVBoxMainWidget(); - TQButtonGroup *group = new TQButtonGroup( 1, Qt::Horizontal, i18n( "Orientation" ), vbox ); + TQButtonGroup *group = new TQButtonGroup( 1, TQt::Horizontal, i18n( "Orientation" ), vbox ); group->setRadioButtonExclusive( true ); //group->layout(); m_hButton = new TQRadioButton( i18n( "Horizontal" ), group ); @@ -83,12 +83,12 @@ double KoGuideLineDia::pos() const } -Qt::Orientation KoGuideLineDia::orientation() const +TQt::Orientation KoGuideLineDia::orientation() const { - Qt::Orientation o = Qt::Horizontal; + TQt::Orientation o = TQt::Horizontal; if ( m_vButton && m_vButton->isChecked() ) { - o = Qt::Vertical; + o = TQt::Vertical; } return o; } |