]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/utilsexc.cpp
Unicode fixes for OS/2
[wxWidgets.git] / src / os2 / utilsexc.cpp
index f03454c49afd159f3cd979dbff6a2f48146e0b4c..3e9d94a0bfa67d25e54da9e04f8e58bdbc91343f 100644 (file)
@@ -231,7 +231,10 @@ long wxExecute(
 
     while (*ppArgv != NULL)
     {
-        sCommand << *ppArgv++ << ' ';
+        wxString                    sArg((wxChar*)(*ppArgv++));
+
+
+        sCommand << sArg.c_str() << ' ';
     }
     sCommand.RemoveLast();
     return wxExecute( sCommand
@@ -263,7 +266,7 @@ bool wxGetFullHostName(
     strncpy(zBuf, zComputer, nMaxSize);
     zBuf[nMaxSize] = _T('\0');
 #else
-    strcpy(zBuf, "noname");
+    strcpy((char*)zBuf, "noname");
 #endif
     return *zBuf ? TRUE : FALSE;
     return TRUE;