]> git.saurik.com Git - wxWidgets.git/commitdiff
Helps Borland compile further in Unicode mode.
authorOve Kaaven <ovek@arcticnet.no>
Mon, 19 Apr 1999 17:48:28 +0000 (17:48 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Mon, 19 Apr 1999 17:48:28 +0000 (17:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2236 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/intl.h
include/wx/wxchar.h

index d7fb1637eee20dc86f437b0fbe08931ae96a2619..e18303f019b6a8978ebc19a4433ff176711924b7 100644 (file)
@@ -131,7 +131,10 @@ extern WXDLLEXPORT wxLocale* wxGetLocale();
 inline const wxMB2WXbuf wxGetTranslation(const wxChar *sz)
 {
     wxLocale *pLoc = wxGetLocale();
-    return pLoc ? pLoc->GetString(sz) : (const wxMB2WXbuf)sz;
+    if (pLoc)
+        return pLoc->GetString(sz);
+    else
+        return (const wxMB2WXbuf)sz;
 }
 
 #endif
index 92556cea5dd0758e4ef757d6a7fc8745f32a1246..4ff34b9e9fdaf59e452904526e3282dc102d468b 100644 (file)
@@ -454,6 +454,7 @@ size_t   WXDLLEXPORT wcslen(const wchar_t *s);
 #endif
 
 #ifdef wxNEED_WX_STRING_H
+int      WXDLLEXPORT wxStrcmp(const wxChar *psz1, const wxChar *psz2);
 size_t   WXDLLEXPORT wxStrlen(const wxChar *s);
 #endif