Branch: master

63102ab1 2014-08-07 17:21:17 Timothy Pearson
Rename the string kde toolbar widget
M karbon/widgets/vselecttoolbar.cc
diff --git a/karbon/widgets/vselecttoolbar.cc b/karbon/widgets/vselecttoolbar.cc
index ef731e9..2e32a67 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 ) ) );