{
OpenUserDataRec * data = ( OpenUserDataRec *) ioUserData ;
if (inSelector == kNavCBEvent) {
+#if !TARGET_CARBON
wxTheApp->MacHandleOneEvent(ioParams->eventData.eventDataParms.event);
+#endif
}
else if ( inSelector == kNavCBStart )
{
if ( fileDialog.ShowModal() == wxID_OK )
{
- strcpy(wxBuffer, (const char *)fileDialog.GetPath());
- return wxBuffer;
+ return fileDialog.GetPath();
}
else
return wxGetEmptyString();
if ( fileDialog.ShowModal() == wxID_OK )
{
*defaultFilterIndex = fileDialog.GetFilterIndex();
- strcpy(wxBuffer, (const char *)fileDialog.GetPath());
- return wxBuffer;
+ return fileDialog.GetPath();
}
else
return wxGetEmptyString();
AEDesc mDefaultLocation ;
bool mSelectDefault = false ;
+ // zero all data
+
+ m_path = wxEmptyString ;
+ m_fileName = wxEmptyString ;
+ m_paths.Empty();
+ m_fileNames.Empty();
+
+ // setup dialog
+
::NavGetDefaultDialogOptions(&mNavOptions);
mNavFilterUPP = nil;
}
if ( (err != noErr) && (err != userCanceledErr) ) {
- m_path = "" ;
return wxID_CANCEL ;
}
{
OpenUserDataRec * data = ( OpenUserDataRec *) ioUserData ;
if (inSelector == kNavCBEvent) {
+#if !TARGET_CARBON
wxTheApp->MacHandleOneEvent(ioParams->eventData.eventDataParms.event);
+#endif
}
else if ( inSelector == kNavCBStart )
{
if ( fileDialog.ShowModal() == wxID_OK )
{
- strcpy(wxBuffer, (const char *)fileDialog.GetPath());
- return wxBuffer;
+ return fileDialog.GetPath();
}
else
return wxGetEmptyString();
if ( fileDialog.ShowModal() == wxID_OK )
{
*defaultFilterIndex = fileDialog.GetFilterIndex();
- strcpy(wxBuffer, (const char *)fileDialog.GetPath());
- return wxBuffer;
+ return fileDialog.GetPath();
}
else
return wxGetEmptyString();
AEDesc mDefaultLocation ;
bool mSelectDefault = false ;
+ // zero all data
+
+ m_path = wxEmptyString ;
+ m_fileName = wxEmptyString ;
+ m_paths.Empty();
+ m_fileNames.Empty();
+
+ // setup dialog
+
::NavGetDefaultDialogOptions(&mNavOptions);
mNavFilterUPP = nil;
}
if ( (err != noErr) && (err != userCanceledErr) ) {
- m_path = "" ;
return wxID_CANCEL ;
}