Version: (using KDE 3.1.3) Installed from: SuSE Compiler: gcc version 2.95.3 20010315 (SuSE) OS: Linux (i686) release 2.4.18 News sources which contain ampersands in their title are displayed incorrectly: The ampersand is not escaped and thus interpreted as an accelerator.
Created attachment 2314 [details] screenshot
Subject: kdenetwork/knewsticker CVS commit by raabe: - Display news sources with ampersands in the name correctly CCMAIL:63265-done@bugs.kde.org M +1 -1 knewsticker.cpp 1.156 --- kdenetwork/knewsticker/knewsticker.cpp #1.155:1.156 @@ -435,5 +435,5 @@ void KNewsTickerMenu::populateMenu() submenu->insertItem(lookIcon, i18n("Check News"), idx++); submenu->insertSeparator(); - insertItem(ns->icon(), ns->newsSourceName(), submenu); + insertItem(ns->icon(), ns->newsSourceName().replace('&', "&&"), submenu); if (m_parent->m_pendingNewsUpdates.contains(ns->newsSourceName())) {