]> git.saurik.com Git - wxWidgets.git/commitdiff
Enable execute code for Unicode. This also makes
authorRobert Roebling <robert@roebling.de>
Sat, 14 Sep 2002 15:00:49 +0000 (15:00 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 14 Sep 2002 15:00:49 +0000 (15:00 +0000)
    printing to the printer work in Unicode mode.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17175 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/utilsunx.cpp

index 4cb88a61b97e38ddf0094f5c68a269caf4567468..445f88b9faf3ecb6046cd6eeec90bcb51c061056 100644 (file)
@@ -253,11 +253,7 @@ long wxExecute( const wxString& command, int flags, wxProcess *process )
     argv[argc] = NULL;
 
     // do execute the command
-#if wxUSE_UNICODE
-    long lRc = -1;
-#else
     long lRc = wxExecute(argv, flags, process);
-#endif
 
     // clean up
     argc = 0;