Summary: | wrong status text for KStdAction menu item | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Xiong Jiang <jxiong> |
Component: | general | Assignee: | kdevelop-bugs-null |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Xiong Jiang
2004-01-05 19:42:36 UTC
beautifyToolTip() is a bad joke. CVS commit by mattr: Don't use beautifyToolTip on the KStdAction for 'Configure KDevelop'. This fixes bug 71926 but since it involves an i18n change, so i won't backport unless told to. Please advise. BUG: 71926 CCMAIL: kde-i18n-doc@kde.org M +2 -2 mainwindowshare.cpp 1.50.2.1 --- kdevelop/src/mainwindowshare.cpp #1.50:1.50.2.1 @@ -157,6 +157,6 @@ void MainWindowShare::createActions() action = KStdAction::preferences(this, SLOT(slotSettings()), m_pMainWnd->actionCollection(), "settings_configure" ); - action->setToolTip(beautifyToolTip(action->text())); - action->setWhatsThis(QString("<b>%1</b><p>%2").arg(beautifyToolTip(action->text())).arg(i18n("Lets you customize KDevelop."))); + action->setToolTip( i18n( "Configure KDevelop" ) ); + action->setWhatsThis(QString("<b>%1</b><p>%2").arg(i18n( "Configure KDevelop" )).arg(i18n("Lets you customize KDevelop."))); m_toggleStatusbar = KStdAction::showToolbar(this, SLOT(slotToggleStatusbar()),m_pMainWnd->actionCollection(), "settings_statusbar"); |