summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-08-07 17:21:17 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-08-07 17:21:17 -0500
commit63102ab1dc8cd455fccab172a828f1b490790f15 (patch)
tree8bb6a93aa30ba44490b44d175def440f3204c5a4
parentaff9e4d3f628629b362bf0cc32fa20a3c6538c1c (diff)
downloadkoffice-63102ab1dc8cd455fccab172a828f1b490790f15.tar.gz
koffice-63102ab1dc8cd455fccab172a828f1b490790f15.zip
Rename the string kde toolbar widget
-rw-r--r--karbon/widgets/vselecttoolbar.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/karbon/widgets/vselecttoolbar.cc b/karbon/widgets/vselecttoolbar.cc
index ef731e92..2e32a677 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 ) ) );