From 63102ab1dc8cd455fccab172a828f1b490790f15 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 7 Aug 2014 17:21:17 -0500 Subject: [PATCH] Rename the string kde toolbar widget --- karbon/widgets/vselecttoolbar.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/karbon/widgets/vselecttoolbar.cc b/karbon/widgets/vselecttoolbar.cc index ef731e92f..2e32a6773 100644 --- a/karbon/widgets/vselecttoolbar.cc +++ b/karbon/widgets/vselecttoolbar.cc @@ -36,24 +36,24 @@ VSelectToolBar::VSelectToolBar( KarbonView *view, const char* name ) : TDEToolBar( view, name ), m_view( view ) { setCaption( i18n( "Object Properties" ) ); - TQLabel *x_label = new TQLabel( i18n( "X:" ), this, "kde toolbar widget" ); + 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 ) ) ); insertWidget( 1, m_x->width(), m_x ); - TQLabel *y_label = new TQLabel( i18n( "Y:" ), this, "kde toolbar widget" ); + 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 ) ) ); insertWidget( 3, m_y->width(), m_y ); insertSeparator( 4 ); - TQLabel *w_label = new TQLabel( i18n( "selection width", "Width:" ), this, "kde toolbar widget" ); + 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 ) ) ); insertWidget( 6, m_width->width(), m_width ); - TQLabel *h_label = new TQLabel( i18n( "Height:" ), this, "kde toolbar widget" ); + 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 ) ) );