diff options
Diffstat (limited to 'karbon/widgets/vselecttoolbar.cpp')
-rw-r--r-- | karbon/widgets/vselecttoolbar.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/karbon/widgets/vselecttoolbar.cpp b/karbon/widgets/vselecttoolbar.cpp index b0dc9a7c..9c8d1de1 100644 --- a/karbon/widgets/vselecttoolbar.cpp +++ b/karbon/widgets/vselecttoolbar.cpp @@ -39,27 +39,27 @@ VSelectToolBar::VSelectToolBar( KarbonView *view, const char* name ) : TDEToolBa TQLabel *x_label = new TQLabel( i18n( "X:" ), this, "tde toolbar widget" ); insertWidget( 0, x_label->width(), x_label ); m_x = new KoUnitDoubleSpinBox( this, 0.0, 1000.0, 0.5 ); - connect( m_x, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotXChanged( double ) ) ); + connect( m_x, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotXChanged( double ) ) ); insertWidget( 1, m_x->width(), m_x ); TQLabel *y_label = new TQLabel( i18n( "Y:" ), this, "tde toolbar widget" ); insertWidget( 2, y_label->width(), y_label ); m_y = new KoUnitDoubleSpinBox( this, 0.0, 1000.0, 0.5 ); - connect( m_y, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotYChanged( double ) ) ); + connect( m_y, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotYChanged( double ) ) ); insertWidget( 3, m_y->width(), m_y ); insertSeparator( 4 ); TQLabel *w_label = new TQLabel( i18n( "selection width", "Width:" ), this, "tde toolbar widget" ); insertWidget( 5, w_label->width(), w_label ); m_width = new KoUnitDoubleSpinBox( this, 0.0, 1000.0, 0.5 ); - connect( m_width, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotWidthChanged( double ) ) ); + connect( m_width, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotWidthChanged( double ) ) ); insertWidget( 6, m_width->width(), m_width ); TQLabel *h_label = new TQLabel( i18n( "Height:" ), this, "tde toolbar widget" ); insertWidget( 7, h_label->width(), h_label ); m_height = new KoUnitDoubleSpinBox( this, 0.0, 1000.0, 0.5 ); - connect( m_height, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotHeightChanged( double ) ) ); + connect( m_height, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotHeightChanged( double ) ) ); insertWidget( 8, m_height->width(), m_height ); - connect( m_view, TQT_SIGNAL( selectionChange() ), this, TQT_SLOT( slotSelectionChanged() ) ); + connect( m_view, TQ_SIGNAL( selectionChange() ), this, TQ_SLOT( slotSelectionChanged() ) ); } VSelectToolBar::~VSelectToolBar() |