]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/app.cpp
Extract OS X non-GUI event loop in a separate header.
[wxWidgets.git] / src / osx / carbon / app.cpp
index ab14fd40583b205007c780539d4421a7665ab246..4f1417300e179bb9170d6bd959ce0d205eaf1cbc 100644 (file)
@@ -233,9 +233,13 @@ short wxApp::MacHandleAEPDoc(const WXEVENTREF event , WXEVENTREF WXUNUSED(reply)
 
     for (i = 1; i <= itemsInList; i++)
     {
 
     for (i = 1; i <= itemsInList; i++)
     {
-        AEGetNthPtr(
+        err = AEGetNthPtr(
             &docList, i, typeFSRef, &keywd, &returnedType,
             (Ptr)&theRef, sizeof(theRef), &actualSize);
             &docList, i, typeFSRef, &keywd, &returnedType,
             (Ptr)&theRef, sizeof(theRef), &actualSize);
+        
+        if ( err != noErr)
+            return err;
+        
         fName = wxMacFSRefToPath( &theRef ) ;
 
         MacPrintFile(fName);
         fName = wxMacFSRefToPath( &theRef ) ;
 
         MacPrintFile(fName);