summaryrefslogtreecommitdiffstats
path: root/tdeui
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-08-07 17:24:38 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-08-07 17:24:38 -0500
commit32f50cd6f959faf422b389d2d0b52e0930a78c09 (patch)
tree6b94678043cf7ce97f0f5f1ac42681ef0ae5d9f8 /tdeui
parent3b970e49bd257b679af0d2cf710c67cf4b931e9c (diff)
downloadtdelibs-32f50cd6f959faf422b389d2d0b52e0930a78c09.tar.gz
tdelibs-32f50cd6f959faf422b389d2d0b52e0930a78c09.zip
Rename the string kde toolbar widget
Diffstat (limited to 'tdeui')
-rw-r--r--tdeui/tdelistviewsearchline.cpp2
-rw-r--r--tdeui/tdetoolbarlabelaction.cpp6
-rw-r--r--tdeui/tdetoolbarlabelaction.h2
-rw-r--r--tdeui/tests/tdetoolbarlabelactiontest.cpp6
4 files changed, 8 insertions, 8 deletions
diff --git a/tdeui/tdelistviewsearchline.cpp b/tdeui/tdelistviewsearchline.cpp
index b74b4d1c1..50ad3d276 100644
--- a/tdeui/tdelistviewsearchline.cpp
+++ b/tdeui/tdelistviewsearchline.cpp
@@ -452,7 +452,7 @@ void TDEListViewSearchLineWidget::createWidgets()
d->clearButton->show();
- TQLabel *label = new TQLabel(i18n("S&earch:"), this, "kde toolbar widget");
+ TQLabel *label = new TQLabel(i18n("S&earch:"), this, "tde toolbar widget");
d->searchLine = createSearchLine(d->listView);
d->searchLine->show();
diff --git a/tdeui/tdetoolbarlabelaction.cpp b/tdeui/tdetoolbarlabelaction.cpp
index dcac8fc8b..c88f68434 100644
--- a/tdeui/tdetoolbarlabelaction.cpp
+++ b/tdeui/tdetoolbarlabelaction.cpp
@@ -38,7 +38,7 @@ TDEToolBarLabelAction::TDEToolBarLabelAction(const TQString &text,
const char *slot,
TDEActionCollection *parent,
const char *name)
- : KWidgetAction(new TQLabel(text, 0, "kde toolbar widget"), text, cut,
+ : KWidgetAction(new TQLabel(text, 0, "tde toolbar widget"), text, cut,
receiver, slot, parent, name),
d(new TDEToolBarLabelActionPrivate)
{
@@ -52,7 +52,7 @@ TDEToolBarLabelAction::TDEToolBarLabelAction(TQWidget* buddy,
const char *slot,
TDEActionCollection *parent,
const char *name)
- : KWidgetAction(new TQLabel(buddy, text, 0, "kde toolbar widget"), text,
+ : KWidgetAction(new TQLabel(buddy, text, 0, "tde toolbar widget"), text,
cut, receiver, slot, parent, name),
d(new TDEToolBarLabelActionPrivate)
{
@@ -68,7 +68,7 @@ TDEToolBarLabelAction::TDEToolBarLabelAction(TQLabel* label,
: KWidgetAction(label, label->text(), cut, receiver, slot, parent, name),
d(new TDEToolBarLabelActionPrivate)
{
- Q_ASSERT(TQString::fromLatin1("kde toolbar widget") == label->name());
+ Q_ASSERT(TQString::fromLatin1("tde toolbar widget") == label->name());
init();
}
diff --git a/tdeui/tdetoolbarlabelaction.h b/tdeui/tdetoolbarlabelaction.h
index 3fef73937..c330c9254 100644
--- a/tdeui/tdetoolbarlabelaction.h
+++ b/tdeui/tdetoolbarlabelaction.h
@@ -87,7 +87,7 @@ public:
* transferred to the action and the label is deleted when the action is
* deleted. So you shouldn't hold any pointers to the label.
*
- * It's important that the label's name is set to "kde toolbar widget" in
+ * It's important that the label's name is set to "tde toolbar widget" in
* its constructor, otherwise it is not correctly rendered in some kde
* styles.
*
diff --git a/tdeui/tests/tdetoolbarlabelactiontest.cpp b/tdeui/tests/tdetoolbarlabelactiontest.cpp
index b919c2725..7c6222a11 100644
--- a/tdeui/tests/tdetoolbarlabelactiontest.cpp
+++ b/tdeui/tests/tdetoolbarlabelactiontest.cpp
@@ -40,10 +40,10 @@ public:
KSqueezedTextLabel* accel = new KSqueezedTextLabel
("&Really long, long, long and boring text goes here", main,
- "kde toolbar widget");
+ "tde toolbar widget");
new KSqueezedTextLabel
("Really long, long, long and boring text goes here", main,
- "kde toolbar widget");
+ "tde toolbar widget");
// first constructor
@@ -67,7 +67,7 @@ public:
// third constructor
TQLabel* customLabel = new KSqueezedTextLabel
("&Really long, long, long and boring text goes here", this,
- "kde toolbar widget");
+ "tde toolbar widget");
TDEToolBarLabelAction* label3 = new TDEToolBarLabelAction(customLabel, 0, 0, 0,
actionCollection(),