diff options
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(); } |