]> git.saurik.com Git - wxWidgets.git/commitdiff
added missing parent parameter to Cocoa version of wxAboutBox(); also pass it to...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 26 Apr 2009 14:59:36 +0000 (14:59 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 26 Apr 2009 14:59:36 +0000 (14:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60403 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/carbon/aboutdlg.cpp
src/osx/cocoa/aboutdlg.mm

index 81cff671e58e9e3584ba1e207dfa9f25bec2ef56..bbe9f1f8f326e7274b8ab5fce3d913cb37f582dc 100644 (file)
@@ -56,7 +56,7 @@ public:
 // 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
@@ -84,7 +84,7 @@ void wxAboutBox(const wxAboutDialogInfo& info, wxWindow* WXUNUSED(parent))
     else // simple "native" version is not enough
     {
         // we need to use the full-blown generic version
-        wxGenericAboutBox(info);
+        wxGenericAboutBox(info, parent);
     }
 }
 
index 9c702e9d551f8a8cef333637f052b23fb7d9e424..9c1b0a664d6ff304e49d265310d1a7370d76bf23 100644 (file)
@@ -72,7 +72,7 @@ public:
 // 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
@@ -101,7 +101,7 @@ void wxAboutBox(const wxAboutDialogInfo& info)
     else // simple "native" version is not enough
     {
         // we need to use the full-blown generic version
-        wxGenericAboutBox(info);
+        wxGenericAboutBox(info, parent);
     }
 }