]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utilsexc.cpp
WinCE doesn't have GetThreadLocale
[wxWidgets.git] / src / msw / utilsexc.cpp
index 5ba14aad626e2a7064579b3221400dce7ed35da7..226677c279bde464c0f14eeccb0cf6b57b323074 100644 (file)
@@ -531,7 +531,7 @@ static bool wxExecuteDDE(const wxString& ddeServer,
 
 long wxExecute(const wxString& cmd, int flags, wxProcess *handler)
 {
-    wxCHECK_MSG( !cmd.IsEmpty(), 0, wxT("empty command in wxExecute") );
+    wxCHECK_MSG( !cmd.empty(), 0, wxT("empty command in wxExecute") );
 
 #if wxUSE_THREADS
     // for many reasons, the code below breaks down if it's called from another
@@ -889,7 +889,7 @@ long wxExecute(const wxString& cmd, int flags, wxProcess *handler)
     }
 
     wxAppTraits *traits = NULL;
-    void *cookie wxDUMMY_INITIALIZE(NULL);
+    void *cookie = NULL;
     if ( !(flags & wxEXEC_NODISABLE) )
     {
         if ( wxTheApp )