X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/489468feaa08b8f504735eecca522fb8d0f825d2..f8d0234d39c66f3d1d7fc2346562cb96c8c7be20:/src/osx/carbon/aboutdlg.cpp diff --git a/src/osx/carbon/aboutdlg.cpp b/src/osx/carbon/aboutdlg.cpp index 243de8b7d7..9188a221c7 100644 --- a/src/osx/carbon/aboutdlg.cpp +++ b/src/osx/carbon/aboutdlg.cpp @@ -27,7 +27,7 @@ #include "wx/aboutdlg.h" #include "wx/generic/aboutdlgg.h" -#include "wx/mac/private.h" +#include "wx/osx/private.h" // helper class for HIAboutBox options class AboutBoxOptions : public wxCFRef @@ -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);