X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a83f860948059b0273b5cc6d9e43fadad3ebfca..739c5499fcab1c165b8dd0591c9fd9e2329b3cf9:/src/msw/aboutdlg.cpp?ds=sidebyside diff --git a/src/msw/aboutdlg.cpp b/src/msw/aboutdlg.cpp index 526552fd89..8524477611 100644 --- a/src/msw/aboutdlg.cpp +++ b/src/msw/aboutdlg.cpp @@ -51,7 +51,7 @@ void wxAboutBox(const wxAboutDialogInfo& info, wxWindow* parent) if ( info.HasVersion() ) { msg << wxT('\n'); - msg << wxString::Format(_("Version %s"), info.GetVersion()); + msg << info.GetLongVersion(); } msg << wxT("\n\n"); @@ -62,7 +62,7 @@ void wxAboutBox(const wxAboutDialogInfo& info, wxWindow* parent) // add everything remaining msg << info.GetDescriptionAndCredits(); - wxMessageBox(msg, wxString::Format(_("About %s"), name, wxOK | wxCENTRE, parent)); + wxMessageBox(msg, wxString::Format(_("About %s"), name), wxOK | wxCENTRE, parent); } else // simple "native" version is not enough {