]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/intl.h
wxGLCanvas works again
[wxWidgets.git] / include / wx / intl.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