Rename the string kde toolbar widget

pull/21/head
Timothy Pearson 10 years ago
parent 8231cc23f3
commit 1f660b6edc

@ -52,7 +52,7 @@ int LabelAction::plug( TQWidget * widget, int index ) {
if ( widget->inherits( "TDEToolBar" ) ) {
TDEToolBar * bar = (TDEToolBar *)widget;
int id_ = getToolButtonID();
TQLabel* label = new TQLabel( text(), bar, "kde toolbar widget" );
TQLabel* label = new TQLabel( text(), bar, "tde toolbar widget" );
bar->insertWidget( id_, label->width(), label, index );
addContainer( bar, id_ );
connect( bar, TQT_SIGNAL( destroyed() ), this, TQT_SLOT( slotDestroyed() ) );
@ -77,7 +77,7 @@ int LineEditAction::plug( TQWidget * widget, int index ) {
TDEToolBar *bar = (TDEToolBar *)widget;
int id_ = getToolButtonID();
// The toolbar trick doesn't seem to work for lineedits
//_le = new TQLineEdit( bar, "kde toolbar widget" );
//_le = new TQLineEdit( bar, "tde toolbar widget" );
_le = new TQLineEdit( bar );
bar->insertWidget( id_, _le->width(), _le, index );
bar->setStretchableWidget( _le );

@ -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 );

@ -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 );

@ -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 ) ),

@ -66,7 +66,7 @@ HeaderListQuickSearch::HeaderListQuickSearch( TQWidget *parent,
"Resets the quick search so that "
"all messages are shown again." ) );
TQLabel *label = new TQLabel( i18n("Stat&us:"), parent, "kde toolbar widget" );
TQLabel *label = new TQLabel( i18n("Stat&us:"), parent, "tde toolbar widget" );
mStatusCombo = new TQComboBox( parent, "quick search status combo box" );
mStatusCombo->setSizeLimit( 12 );

@ -598,7 +598,7 @@ void KMMainWidget::createWidgets(void)
mSearchToolBar = new TDEToolBar( mSearchAndHeaders, "search toolbar");
mSearchToolBar->setMovingEnabled(false);
mSearchToolBar->boxLayout()->setSpacing( KDialog::spacingHint() );
TQLabel *label = new TQLabel( i18n("S&earch:"), mSearchToolBar, "kde toolbar widget" );
TQLabel *label = new TQLabel( i18n("S&earch:"), mSearchToolBar, "tde toolbar widget" );
mHeaders = new KMHeaders(this, mSearchAndHeaders, "headers");

@ -167,7 +167,7 @@ KNMainWidget::KNMainWidget( KXMLGUIClient* client, bool detachable, TQWidget* pa
"Resets the quick search so that "
"all messages are shown again." ) );
TQLabel *lbl = new TQLabel(i18n("&Search:"), q_uicksearch, "kde toolbar widget");
TQLabel *lbl = new TQLabel(i18n("&Search:"), q_uicksearch, "tde toolbar widget");
s_earchLineEdit = new TDEListViewSearchLine(q_uicksearch, h_drView, "TDEListViewSearchLine");
q_uicksearch->setStretchableWidget(s_earchLineEdit);
lbl->setBuddy(s_earchLineEdit);

Loading…
Cancel
Save