]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/wince/crt.cpp
supress unused var warning
[wxWidgets.git] / src / msw / wince / crt.cpp
index 50804e856b68bcd190fb9bb82044cfc5b725a78e..2b283f0e958cf44387bd63a3f9c59936cd88a5cf 100644 (file)
@@ -53,11 +53,12 @@ void abort()
     if ( wxTheApp )
         name = wxTheApp->GetAppName();
     if ( name.empty() )
-        name = L"wxWindows Application";
+        name = L"wxWidgets Application";
 
     MessageBox(NULL, L"Abnormal program termination", name, MB_ICONHAND | MB_OK);
 
-    ::ExitProcess(3);
+    _exit(3);
+//    ::ExitProcess(3);
 }
 
 extern "C"