]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/utils.cpp
added copy constr
[wxWidgets.git] / src / palmos / utils.cpp
index 81db337f9b7e1b9500c6efb82e23d3c370523b76..c8d8d849088c24b76fea28d52e80ba403c581343 100644 (file)
@@ -90,7 +90,7 @@ bool wxGetUserName(wxChar *buf, int maxSize)
         return false;
     }
 
-    wxStrncpy (buf, wxConvertMB2WX(id), maxSize - 1);
+    wxStrncpy (buf, wxSafeConvertMB2WX(id), maxSize - 1);
 
     // free the buffer
     MemPtrUnlock(id);
@@ -127,6 +127,11 @@ bool wxSetEnv(const wxString& var, const wxChar *value)
     return false;
 }
 
+bool wxUnsetEnv(const wxString& var)
+{
+    return false;
+}
+
 // ----------------------------------------------------------------------------
 // process management
 // ----------------------------------------------------------------------------