summaryrefslogtreecommitdiffstats
path: root/kaddressbook
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-08-07 17:25:04 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-08-07 17:25:04 -0500
commit1f660b6edc6f8f7c7ae60d6651e73d21a2ab7786 (patch)
treebabed314e6b5ca4e98957e31c0fd07e155cfd84c /kaddressbook
parent8231cc23f3e8b266a6b0e229865905233e867cbf (diff)
downloadtdepim-1f660b6edc6f8f7c7ae60d6651e73d21a2ab7786.tar.gz
tdepim-1f660b6edc6f8f7c7ae60d6651e73d21a2ab7786.zip
Rename the string kde toolbar widget
Diffstat (limited to 'kaddressbook')
-rw-r--r--kaddressbook/filterselectionwidget.cpp2
-rw-r--r--kaddressbook/incsearchwidget.cpp4
-rw-r--r--kaddressbook/kabcore.cpp4
3 files changed, 5 insertions, 5 deletions
diff --git a/kaddressbook/filterselectionwidget.cpp b/kaddressbook/filterselectionwidget.cpp
index 58ec7a181..7daca0a49 100644
--- a/kaddressbook/filterselectionwidget.cpp
+++ b/kaddressbook/filterselectionwidget.cpp
@@ -34,7 +34,7 @@ FilterSelectionWidget::FilterSelectionWidget( TQWidget *parent, const char *name
{
setSpacing( KDialog::spacingHint() );
- TQLabel *label = new TQLabel( i18n( "Filter:" ), this, "kde toolbar widget" );
+ TQLabel *label = new TQLabel( i18n( "Filter:" ), this, "tde toolbar widget" );
mFilterCombo = new KComboBox( this );
label->setBuddy( mFilterCombo );
diff --git a/kaddressbook/incsearchwidget.cpp b/kaddressbook/incsearchwidget.cpp
index 2c7c3870c..efd68ebdf 100644
--- a/kaddressbook/incsearchwidget.cpp
+++ b/kaddressbook/incsearchwidget.cpp
@@ -50,7 +50,7 @@ IncSearchWidget::IncSearchWidget( TQWidget *parent, const char *name )
TQToolTip::add( button, i18n( "Reset" ) );
layout->addWidget( button );
- TQLabel *label = new TQLabel( i18n( "Search:" ), this, "kde toolbar widget" );
+ TQLabel *label = new TQLabel( i18n( "Search:" ), this, "tde toolbar widget" );
label->setAlignment( TQLabel::AlignVCenter | TQLabel::AlignRight );
layout->addWidget( label );
@@ -60,7 +60,7 @@ IncSearchWidget::IncSearchWidget( TQWidget *parent, const char *name )
label->setBuddy( mSearchText );
layout->addWidget( mSearchText );
- label = new TQLabel( i18n( "as in 'Search in:'", "&in:" ), this, "kde toolbar widget" );
+ label = new TQLabel( i18n( "as in 'Search in:'", "&in:" ), this, "tde toolbar widget" );
label->setAlignment( TQLabel::AlignVCenter | TQLabel::AlignRight );
layout->addWidget( label );
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp
index 27b71139d..dbd90642b 100644
--- a/kaddressbook/kabcore.cpp
+++ b/kaddressbook/kabcore.cpp
@@ -1197,7 +1197,7 @@ void KABCore::initGUI()
TQVBoxLayout *topLayout = new TQVBoxLayout( mWidget, 0, 0 );
TDEToolBar* searchTB = new TDEToolBar( mWidget, "search toolbar");
searchTB->boxLayout()->setSpacing( KDialog::spacingHint() );
- mIncSearchWidget = new IncSearchWidget( searchTB, "kde toolbar widget");
+ mIncSearchWidget = new IncSearchWidget( searchTB, "tde toolbar widget");
searchTB->setStretchableWidget( mIncSearchWidget );
connect( mIncSearchWidget, TQT_SIGNAL( doSearch( const TQString& ) ),
TQT_SLOT( incrementalTextSearch( const TQString& ) ) );
@@ -1262,7 +1262,7 @@ void KABCore::initGUI()
buttonLayout->addWidget( mRemoveDistListButton );
#endif
- mFilterSelectionWidget = new FilterSelectionWidget( searchTB , "kde toolbar widget" );
+ mFilterSelectionWidget = new FilterSelectionWidget( searchTB , "tde toolbar widget" );
mViewManager->setFilterSelectionWidget( mFilterSelectionWidget );
connect( mFilterSelectionWidget, TQT_SIGNAL( filterActivated( int ) ),