diff options
Diffstat (limited to 'karbon/widgets/vselecttoolbar.cc')
-rw-r--r-- | karbon/widgets/vselecttoolbar.cc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/karbon/widgets/vselecttoolbar.cc b/karbon/widgets/vselecttoolbar.cc index a39650d8..fa01ba46 100644 --- a/karbon/widgets/vselecttoolbar.cc +++ b/karbon/widgets/vselecttoolbar.cc @@ -20,7 +20,7 @@ /* vselecttoolbar.cc */ -#include <qlabel.h> +#include <tqlabel.h> #include <klocale.h> #include <kdebug.h> @@ -36,30 +36,30 @@ VSelectToolBar::VSelectToolBar( KarbonView *view, const char* name ) : KToolBar( view, name ), m_view( view ) { setCaption( i18n( "Object Properties" ) ); - QLabel *x_label = new QLabel( i18n( "X:" ), this, "kde toolbar widget" ); + TQLabel *x_label = new TQLabel( i18n( "X:" ), this, "kde toolbar widget" ); insertWidget( 0, x_label->width(), x_label ); m_x = new KoUnitDoubleSpinBox( this, 0.0, 1000.0, 0.5 ); - connect( m_x, SIGNAL( valueChanged( double ) ), this, SLOT( slotXChanged( double ) ) ); + connect( m_x, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotXChanged( double ) ) ); insertWidget( 1, m_x->width(), m_x ); - QLabel *y_label = new QLabel( i18n( "Y:" ), this, "kde toolbar widget" ); + TQLabel *y_label = new TQLabel( i18n( "Y:" ), this, "kde toolbar widget" ); insertWidget( 2, y_label->width(), y_label ); m_y = new KoUnitDoubleSpinBox( this, 0.0, 1000.0, 0.5 ); - connect( m_y, SIGNAL( valueChanged( double ) ), this, SLOT( slotYChanged( double ) ) ); + connect( m_y, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotYChanged( double ) ) ); insertWidget( 3, m_y->width(), m_y ); insertSeparator( 4 ); - QLabel *w_label = new QLabel( i18n( "selection width", "Width:" ), this, "kde toolbar widget" ); + TQLabel *w_label = new TQLabel( i18n( "selection width", "Width:" ), this, "kde toolbar widget" ); insertWidget( 5, w_label->width(), w_label ); m_width = new KoUnitDoubleSpinBox( this, 0.0, 1000.0, 0.5 ); - connect( m_width, SIGNAL( valueChanged( double ) ), this, SLOT( slotWidthChanged( double ) ) ); + connect( m_width, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotWidthChanged( double ) ) ); insertWidget( 6, m_width->width(), m_width ); - QLabel *h_label = new QLabel( i18n( "Height:" ), this, "kde toolbar widget" ); + TQLabel *h_label = new TQLabel( i18n( "Height:" ), this, "kde toolbar widget" ); insertWidget( 7, h_label->width(), h_label ); m_height = new KoUnitDoubleSpinBox( this, 0.0, 1000.0, 0.5 ); - connect( m_height, SIGNAL( valueChanged( double ) ), this, SLOT( slotHeightChanged( double ) ) ); + connect( m_height, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotHeightChanged( double ) ) ); insertWidget( 8, m_height->width(), m_height ); - connect( m_view, SIGNAL( selectionChange() ), this, SLOT( slotSelectionChanged() ) ); + connect( m_view, TQT_SIGNAL( selectionChange() ), this, TQT_SLOT( slotSelectionChanged() ) ); } VSelectToolBar::~VSelectToolBar() |