]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/cocoa/dirdlg.mm
Fixed bug: wxPropertyGridInterface::SetPropertyReadOnly() with wxPG_DONT_RECURSE...
[wxWidgets.git] / src / osx / cocoa / dirdlg.mm
index 4f5063ba61a8e607a2644a91fff40752083a5c77..e68bf5020b8812f8a40aef545720155ca5825691 100644 (file)
@@ -37,8 +37,8 @@
 IMPLEMENT_CLASS(wxDirDialog, wxDialog)
 
 wxDirDialog::wxDirDialog(wxWindow *parent, const wxString& message,
-        const wxString& defaultPath, long style, const wxPoint& pos,
-        const wxSize& size, const wxString& name)
+        const wxString& defaultPath, long style, const wxPoint& WXUNUSED(pos),
+        const wxSize& WXUNUSED(size), const wxString& WXUNUSED(name))
 {
     m_parent = parent;
 
@@ -78,7 +78,8 @@ int wxDirDialog::ShowModal()
     {
         fprintf(stderr, "No parent!\n");
     }
-    
+
+/*    
     if (parentWindow)
     {
         NSWindow* nativeParent = parentWindow->GetWXWindow();
@@ -92,6 +93,7 @@ int wxDirDialog::ShowModal()
         [sheetDelegate release];
     }
     else
+*/
     {
         returnCode = (NSInteger)[oPanel runModalForDirectory:dir.AsNSString() file:nil types:nil];
     }