X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1f0c8f31f407ecfce909060464c0ea655221cdab..88c87a11a81106d950a2bbadf9426933f7b63de7:/src/osx/carbon/aboutdlg.cpp diff --git a/src/osx/carbon/aboutdlg.cpp b/src/osx/carbon/aboutdlg.cpp index eca978068f..9188a221c7 100644 --- a/src/osx/carbon/aboutdlg.cpp +++ b/src/osx/carbon/aboutdlg.cpp @@ -61,7 +61,7 @@ void wxAboutBox(const wxAboutDialogInfo& info) // Mac native about box currently can show only name, version, copyright // and description fields and we also shoehorn the credits text into the // description but if we have anything else we must use the generic version -#ifndef __LP64__ + if ( info.IsSimple() ) { AboutBoxOptions opts; @@ -75,14 +75,13 @@ void wxAboutBox(const wxAboutDialogInfo& info) } if ( info.HasCopyright() ) - opts.Set(kHIAboutBoxCopyrightKey, info.GetCopyright()); + opts.Set(kHIAboutBoxCopyrightKey, info.GetCopyrightToDisplay()); opts.Set(kHIAboutBoxDescriptionKey, info.GetDescriptionAndCredits()); HIAboutBox(opts); } else // simple "native" version is not enough -#endif { // we need to use the full-blown generic version wxGenericAboutBox(info);