Summary: | "&Bookmarks" illegal used in KMenu | ||
---|---|---|---|
Product: | [Unmaintained] kdelibs | Reporter: | Funda Wang <fundawang> |
Component: | general | Assignee: | Stephan Kulow <coolo> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Mandrake RPMs | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Funda Wang
2003-06-17 18:20:06 UTC
Subject: kdebase/kicker/ui CVS commit by tokoe: Add an i18n( "Bookmarks" ) to common_texts.cpp and make use of it. That fixes bug #59954. CCMAIL:59954-done@bugs.kde.org M +1 -5 k_mnu.cpp 1.79 --- kdebase/kicker/ui/k_mnu.cpp #1.78:1.79 @@ -223,9 +223,5 @@ void PanelKMenu::initialize() bookmarkMenu = new KBookmarkMenu( KonqBookmarkManager::self(), bookmarkOwner, bookmarkParent, actionCollection, true, false ); - QString bookmarkstring = i18n( "&Bookmarks" ); - int p; - while ( ( p = bookmarkstring.find( '&' ) ) >= 0 ) - bookmarkstring.remove( p, 1 ); - insertItem( SmallIconSet("bookmark"), bookmarkstring, bookmarkParent ); + insertItem( SmallIconSet("bookmark"), i18n( "Bookmarks" ), bookmarkParent ); subMenus.append(bookmarkParent); need_separator = true; |