From: Václav Slavík Date: Wed, 12 Mar 2008 21:28:21 +0000 (+0000) Subject: include 'Version' in version string, it's what Apple apps do X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5e4e03e9f99ebce30c49da587ad97b4ed7d63595?ds=sidebyside include 'Version' in version string, it's what Apple apps do git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52458 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/aboutdlg.cpp b/src/mac/carbon/aboutdlg.cpp index 4cdf9aed9d..243de8b7d7 100644 --- a/src/mac/carbon/aboutdlg.cpp +++ b/src/mac/carbon/aboutdlg.cpp @@ -69,7 +69,10 @@ void wxAboutBox(const wxAboutDialogInfo& info) opts.Set(kHIAboutBoxNameKey, info.GetName()); if ( info.HasVersion() ) - opts.Set(kHIAboutBoxVersionKey, info.GetVersion()); + { + opts.Set(kHIAboutBoxVersionKey, + wxString::Format(_("Version %s"), info.GetVersion())); + } if ( info.HasCopyright() ) opts.Set(kHIAboutBoxCopyrightKey, info.GetCopyright());