]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlpars.cpp
fix for (re)positioning the main window when the style changes
[wxWidgets.git] / src / html / htmlpars.cpp
index 06537bd0cebdcabbe797dabec604bcdfb77db835..31bc825d5cea2c77889cb2ccd1f9671338543885 100644 (file)
@@ -488,7 +488,7 @@ wxChar wxHtmlEntitiesParser::GetCharForCode(unsigned code)
     wbuf[0] = (wchar_t)code;
     wbuf[1] = 0;
     wxMBConv *conv = m_conv ? m_conv : &wxConvLocal;
-    if (conv->WC2MB(buf, wbuf, 1) == (size_t)-1)
+    if (conv->WC2MB(buf, wbuf, 2) == (size_t)-1)
         return '?';
     return buf[0];
 #else