diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-08-07 17:24:38 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-08-07 17:24:38 -0500 |
commit | 32f50cd6f959faf422b389d2d0b52e0930a78c09 (patch) | |
tree | 6b94678043cf7ce97f0f5f1ac42681ef0ae5d9f8 /tdeui/tdetoolbarlabelaction.cpp | |
parent | 3b970e49bd257b679af0d2cf710c67cf4b931e9c (diff) | |
download | tdelibs-32f50cd6f959faf422b389d2d0b52e0930a78c09.tar.gz tdelibs-32f50cd6f959faf422b389d2d0b52e0930a78c09.zip |
Rename the string kde toolbar widget
Diffstat (limited to 'tdeui/tdetoolbarlabelaction.cpp')
-rw-r--r-- | tdeui/tdetoolbarlabelaction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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(); } |