Mercurial > ecos
changeset 2683:204262dd4d13
* standalone/wxwin/mainwin.cpp: Make menu acceleration keys unique.
[ Bugzilla 1000618 ]
| author | jld |
|---|---|
| date | Mon, 08 Dec 2008 21:28:55 +0000 |
| parents | aa78e7da8d3d |
| children | 89abf581f4a4 |
| files | host/tools/configtool/ChangeLog host/tools/configtool/standalone/wxwin/mainwin.cpp |
| diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/host/tools/configtool/ChangeLog +++ b/host/tools/configtool/ChangeLog @@ -1,3 +1,8 @@ +2008-12-08 John Dallaway <jld@ecoscentric.com> + + * standalone/wxwin/mainwin.cpp: Make menu acceleration keys unique. + [ Bugzilla 1000618 ] + 2008-08-15 Bart Veer <bartv@ecoscentric.com> * common/common/build.cxx: avoid compiler warning.
--- a/host/tools/configtool/standalone/wxwin/mainwin.cpp +++ b/host/tools/configtool/standalone/wxwin/mainwin.cpp @@ -343,7 +343,7 @@ ecMainFrame::ecMainFrame(wxDocManager *m buildMenu->AppendSeparator(); buildMenu->Append(ecID_BUILD_OPTIONS, _("&Options..."), _("Changes build options")); buildMenu->Append(ecID_BUILD_REPOSITORY, _("&Repository..."), _("Selects repository")); - buildMenu->Append(ecID_BUILD_TEMPLATES, _("&Templates..."), _("Selects the package templates")); + buildMenu->Append(ecID_BUILD_TEMPLATES, _("Te&mplates..."), _("Selects the package templates")); buildMenu->Append(ecID_BUILD_PACKAGES, _("&Packages..."), _("Selects individual packages")); // Tools menu @@ -356,7 +356,7 @@ ecMainFrame::ecMainFrame(wxDocManager *m toolsMenu->Append(ecID_SHELL, _("&Shell..."), _("Invokes a command shell")); toolsMenu->Append(ecID_RUN_TESTS, _("&Run Tests...\tCtrl+F5"), _("Runs the configuration tests")); - toolsMenu->Append(ecID_PLATFORMS, _("&Platforms..."), _("Edits the platforms list")); + toolsMenu->Append(ecID_PLATFORMS, _("Plat&forms..."), _("Edits the platforms list")); toolsMenu->Append(ecID_RESOLVE_CONFLICTS, _("Resolve &Conflicts..."), _("Resolves conflicts")); toolsMenu->Append(ecID_ADMINISTRATION, _("&Administration..."), _("Performs repository administration tasks")); #if 0
