git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60403
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// implementation
// ============================================================================
// implementation
// ============================================================================
-void wxAboutBox(const wxAboutDialogInfo& info, wxWindow* WXUNUSED(parent))
+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
{
// Mac native about box currently can show only name, version, copyright
// and description fields and we also shoehorn the credits text into the
else // simple "native" version is not enough
{
// we need to use the full-blown generic version
else // simple "native" version is not enough
{
// we need to use the full-blown generic version
- wxGenericAboutBox(info);
+ wxGenericAboutBox(info, parent);
// implementation
// ============================================================================
// 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
{
// Mac native about box currently can show only name, version, copyright
// and description fields and we also shoehorn the credits text into the
else // simple "native" version is not enough
{
// we need to use the full-blown generic version
else // simple "native" version is not enough
{
// we need to use the full-blown generic version
- wxGenericAboutBox(info);
+ wxGenericAboutBox(info, parent);