]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/ole/automtn.cpp
compilation fix for wxUSE_INTL == 0 (patch 646466)
[wxWidgets.git] / src / msw / ole / automtn.cpp
index 826bfe2cb3cfbd246b98d59ac36d17394ca7761b..3870d9626358a310e2be0f8a7a56af27fee0bf24 100644 (file)
@@ -833,12 +833,15 @@ static BSTR ConvertStringToOle(const wxString& str)
 
 static wxString ConvertStringFromOle(BSTR bStr)
 {
+#if wxUSE_UNICODE
+    wxString str(bStr);
+#else
        int len = SysStringLen(bStr) + 1;
        char    *buf = new char[len];
        (void)wcstombs( buf, bStr, len);
-
-       wxString str(buf);
+       wxString str(buf); 
        delete[] buf;
+#endif
        return str;
 }