diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-08-07 17:24:52 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-08-07 17:24:52 -0500 |
commit | 42069cbc2928c7f162235113a0db08622b088503 (patch) | |
tree | 3a2be2d1eb2a01dc0697d4b423146bc7d603d92c | |
parent | 50818289b6a22343d1718f746764c7fb80ae2b2c (diff) | |
download | tdenetwork-42069cbc2928c7f162235113a0db08622b088503.tar.gz tdenetwork-42069cbc2928c7f162235113a0db08622b088503.zip |
Rename the string kde toolbar widget
-rw-r--r-- | kdict/actions.cpp | 2 | ||||
-rw-r--r-- | kopete/kopete/chatwindow/kopetechatwindow.cpp | 2 | ||||
-rw-r--r-- | kopete/kopete/chatwindow/kopeteemailwindow.cpp | 2 | ||||
-rw-r--r-- | kopete/kopete/kopetewindow.cpp | 2 | ||||
-rw-r--r-- | kopete/protocols/yahoo/yahoochatsession.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/kdict/actions.cpp b/kdict/actions.cpp index b2ad29e4..2448a2e9 100644 --- a/kdict/actions.cpp +++ b/kdict/actions.cpp @@ -212,7 +212,7 @@ int DictLabelAction::plug( TQWidget *widget, int index ) int id = TDEAction::getToolButtonID(); - TQLabel *label = new TQLabel( text(), widget, "kde toolbar widget" ); + TQLabel *label = new TQLabel( text(), widget, "tde toolbar widget" ); label->setMinimumWidth(label->sizeHint().width()); label->setBackgroundMode( TQt::PaletteButton ); label->setAlignment(AlignCenter | AlignVCenter); diff --git a/kopete/kopete/chatwindow/kopetechatwindow.cpp b/kopete/kopete/chatwindow/kopetechatwindow.cpp index 03fe962a..323e5816 100644 --- a/kopete/kopete/chatwindow/kopetechatwindow.cpp +++ b/kopete/kopete/chatwindow/kopetechatwindow.cpp @@ -407,7 +407,7 @@ void KopeteChatWindow::initActions(void) animIcon.pause(); // we can't set the tool bar as parent, if we do, it will be deleted when we configure toolbars - anim = new TQLabel( TQString(), 0L ,"kde toolbar widget" ); + anim = new TQLabel( TQString(), 0L ,"tde toolbar widget" ); anim->setMargin(5); anim->setPixmap( normalIcon ); diff --git a/kopete/kopete/chatwindow/kopeteemailwindow.cpp b/kopete/kopete/chatwindow/kopeteemailwindow.cpp index 89bb2eae..4eb7962a 100644 --- a/kopete/kopete/chatwindow/kopeteemailwindow.cpp +++ b/kopete/kopete/chatwindow/kopeteemailwindow.cpp @@ -242,7 +242,7 @@ void KopeteEmailWindow::initActions(void) d->animIcon = TDEGlobal::iconLoader()->loadMovie( TQString::fromLatin1( "newmessage" ), TDEIcon::Toolbar); d->animIcon.pause(); - d->anim = new TQLabel( this, "kde toolbar widget" ); + d->anim = new TQLabel( this, "tde toolbar widget" ); d->anim->setMargin( 5 ); d->anim->setPixmap( d->normalIcon ); new KWidgetAction( d->anim, i18n("Toolbar Animation"), 0, 0, 0, coll, "toolbar_animation" ); diff --git a/kopete/kopete/kopetewindow.cpp b/kopete/kopete/kopetewindow.cpp index 5d00b50b..dc3e8a06 100644 --- a/kopete/kopete/kopetewindow.cpp +++ b/kopete/kopete/kopetewindow.cpp @@ -297,7 +297,7 @@ void KopeteWindow::initActions() actionShowEmptyGroups->setCheckedState(i18n("Hide Empty &Groups")); // quick search bar - TQLabel *searchLabel = new TQLabel( i18n("Se&arch:"), 0, "kde toolbar widget" ); + TQLabel *searchLabel = new TQLabel( i18n("Se&arch:"), 0, "tde toolbar widget" ); TQWidget *searchBar = new Kopete::UI::ListView::SearchLine( 0, contactlist, "quicksearch_bar" ); searchLabel->setBuddy( searchBar ); KWidgetAction *quickSearch = new KWidgetAction( searchBar, i18n( "Quick Search Bar" ), 0, 0, 0, actionCollection(), "quicksearch_bar" ); diff --git a/kopete/protocols/yahoo/yahoochatsession.cpp b/kopete/protocols/yahoo/yahoochatsession.cpp index 38c9c04f..6f2ab25d 100644 --- a/kopete/protocols/yahoo/yahoochatsession.cpp +++ b/kopete/protocols/yahoo/yahoochatsession.cpp @@ -61,7 +61,7 @@ YahooChatSession::YahooChatSession( Kopete::Protocol *protocol, const Kopete::Co YahooContact *c = static_cast<YahooContact*>( others.first() ); connect( c, TQT_SIGNAL( displayPictureChanged() ), this, TQT_SLOT( slotDisplayPictureChanged() ) ); - m_image = new TQLabel( 0L, "kde toolbar widget" ); + m_image = new TQLabel( 0L, "tde toolbar widget" ); new KWidgetAction( m_image, i18n( "Yahoo Display Picture" ), 0, this, TQT_SLOT( slotDisplayPictureChanged() ), actionCollection(), "yahooDisplayPicture" ); if(c->hasProperty(Kopete::Global::Properties::self()->photo().key()) ) { |