diff options
Diffstat (limited to 'tdeui')
-rw-r--r-- | tdeui/tdelistviewsearchline.cpp | 2 | ||||
-rw-r--r-- | tdeui/tdetoolbarlabelaction.cpp | 6 | ||||
-rw-r--r-- | tdeui/tdetoolbarlabelaction.h | 2 | ||||
-rw-r--r-- | tdeui/tests/tdetoolbarlabelactiontest.cpp | 6 |
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(), |