]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/utils.cpp
added missing WXDLLEXPORT
[wxWidgets.git] / src / mgl / utils.cpp
index 7c138f7e4352468a71e0967c590f6429e1dbadc8..2408e47e2f378d4e64410b46f1f36a1b6503ef51 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:
 // Author:      Vaclav Slavik
 // Id:          $Id$
-// Copyright:   (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
+// Copyright:   (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -74,7 +74,6 @@ bool wxGetEnv(const wxString& var, wxString *value)
 
 bool wxSetEnv(const wxString& variable, const wxChar *value)
 {
-#ifdef __WATCOMC__ // has putenv()
     wxString s = variable;
     if ( value )
         s << _T('=') << value;
@@ -87,10 +86,6 @@ bool wxSetEnv(const wxString& variable, const wxChar *value)
     strcpy(buf, p);
 
     return putenv(buf) == 0;
-#else // no way to set an env var
-    #error "Don't know how to implement wxSetEnv on this platform!"
-    return FALSE;
-#endif
 }
 
 const wxChar* wxGetHomeDir(wxString *home)