]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utils.cpp
No changes, move wxStreamTempInputBuffer to a header file.
[wxWidgets.git] / src / msw / utils.cpp
index b5e56d50f74cccc2d84c818c3ef797797cf917ca..afd0bb2e6c0f38742c9bbf3cc2ac680ad7ea31c5 100644 (file)
@@ -636,7 +636,8 @@ bool wxDoSetEnv(const wxString& var, const wxChar *value)
     envstr += '=';
     if ( value )
         envstr += value;
-    _tputenv(envstr.t_str());
+    if ( _tputenv(envstr.t_str()) != 0 )
+        return false;
 #else // other compiler
     if ( !::SetEnvironmentVariable(var.t_str(), value) )
     {