X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9854b6eddf82c31af6753452bb3c2d0b7cb7d2a8..41d368a4bb7a73fbc5ce054dbc205a57241cf0da:/src/mac/carbon/filedlg.cpp diff --git a/src/mac/carbon/filedlg.cpp b/src/mac/carbon/filedlg.cpp index 15771305be..bdcbdbe2c9 100644 --- a/src/mac/carbon/filedlg.cpp +++ b/src/mac/carbon/filedlg.cpp @@ -491,38 +491,17 @@ int wxFileDialog::ShowModal() if (specDesc.dataHandle != nil) { ::AEDisposeDesc(&specDesc); } -#ifdef __DARWIN__ - FSRef fsr ; - err = FSpMakeFSRef( &outFileSpec , &fsr ) ; - if ( err == fnfErr ) - { - FSSpec fss ; - err = FSMakeFSSpec( outFileSpec.vRefNum , outFileSpec.parID, "\p" , &fss ) ; - err = FSpMakeFSRef( &fss , &fsr ) ; - char path[256] ; - err = FSRefMakePath( &fsr , (unsigned char*) path , sizeof(path) ) ; - strcat( path , "/" ) ; - p2cstr( outFileSpec.name ) ; - strcat( path , (char*) outFileSpec.name ) ; - m_path = path ; - } - else - { - m_path = wxMacFSSpec2MacFilename( &outFileSpec ) ; - } -#else m_path = wxMacFSSpec2MacFilename( &outFileSpec ) ; -#endif m_paths.Add( m_path ) ; - m_fileName = wxFileNameFromPath(m_path); - m_fileNames.Add(m_fileName); - } - // set these to the first hit - m_path = m_paths[ 0 ] ; - m_fileName = wxFileNameFromPath(m_path); - m_dir = wxPathOnly(m_path); - NavDisposeReply( &mNavReply ) ; - return wxID_OK ; + m_fileName = wxFileNameFromPath(m_path); + m_fileNames.Add(m_fileName); + } + // set these to the first hit + m_path = m_paths[ 0 ] ; + m_fileName = wxFileNameFromPath(m_path); + m_dir = wxPathOnly(m_path); + NavDisposeReply( &mNavReply ) ; + return wxID_OK ; } return wxID_CANCEL; }