msg << name;
if ( info.HasVersion() )
{
- msg << _T('\n');
- msg << wxString::Format(_("Version %s"), info.GetVersion());
+ msg << wxT('\n');
+ msg << info.GetLongVersion();
}
- msg << _T("\n\n");
+ msg << wxT("\n\n");
if ( info.HasCopyright() )
- msg << info.GetCopyrightToDisplay() << _T('\n');
+ msg << info.GetCopyrightToDisplay() << wxT('\n');
// 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
{