// implementation
// ============================================================================
-void wxAboutBox(const wxAboutDialogInfo& info)
+void wxAboutBox(const wxAboutDialogInfo& info, wxWindow *parent)
{
// Mac native about box currently can show only name, version, copyright
// and description fields and we also shoehorn the credits text into the
if ( info.HasVersion() )
{
opts.Set(CFSTR("Version"),info.GetVersion());
- opts.Set(CFSTR("ApplicationVersion"),
- wxString::Format(_("Version %s"), info.GetVersion()));
+ opts.Set(CFSTR("ApplicationVersion"),info.GetLongVersion());
}
if ( info.HasCopyright() )
else // simple "native" version is not enough
{
// we need to use the full-blown generic version
- wxGenericAboutBox(info);
+ wxGenericAboutBox(info, parent);
}
}