From 075386e6e7aca053bd1d77a8e6750798380d0787 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Wed, 16 Feb 2011 16:10:30 +0000 Subject: [PATCH] conforming to deprecation recommendation for 10.6 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/osx/cocoa/filedlg.mm | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/src/osx/cocoa/filedlg.mm b/src/osx/cocoa/filedlg.mm index a505870f3d..19c84eee0a 100644 --- a/src/osx/cocoa/filedlg.mm +++ b/src/osx/cocoa/filedlg.mm @@ -200,9 +200,8 @@ void wxFileDialog::ShowWindowModal() [oPanel setResolvesAliases:YES]; [oPanel setCanChooseFiles:YES]; [oPanel setMessage:cf.AsNSString()]; - if ( HasFlag(wxFD_MULTIPLE) ) - [oPanel setAllowsMultipleSelection:YES]; - + [oPanel setAllowsMultipleSelection: (HasFlag(wxFD_MULTIPLE) ? YES : NO )]; + NSWindow* nativeParent = parentWindow->GetWXWindow(); ModalDialogDelegate* sheetDelegate = [[ModalDialogDelegate alloc] init]; [sheetDelegate setImplementation: this]; @@ -298,11 +297,20 @@ int wxFileDialog::ShowModal() [oPanel setResolvesAliases:YES]; [oPanel setCanChooseFiles:YES]; [oPanel setMessage:cf.AsNSString()]; - if ( HasFlag(wxFD_MULTIPLE) ) - [oPanel setAllowsMultipleSelection:YES]; + [oPanel setAllowsMultipleSelection: (HasFlag(wxFD_MULTIPLE) ? YES : NO )]; - returnCode = [oPanel runModalForDirectory:dir.AsNSString() + if ( UMAGetSystemVersion() < 0x1060 ) + { + returnCode = [oPanel runModalForDirectory:dir.AsNSString() file:file.AsNSString() types:types]; + } + else + { + [oPanel setAllowedFileTypes:types]; + [oPanel setDirectoryURL:[NSURL fileURLWithPath:dir.AsNSString() + isDirectory:YES]]; + returnCode = [oPanel runModal]; + } ModalFinishedCallback(oPanel, returnCode); -- 2.45.2