]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed bug #429351 (compilation broken in CJK environment (whatever it is) in 'agrave...
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 1 Jun 2001 21:47:27 +0000 (21:47 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 1 Jun 2001 21:47:27 +0000 (21:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/helpdata.cpp
src/html/htmlcell.cpp

index 4ca2b321923b9813889f53fb5420782334e5c7c5..76e7264ae8d9c53214a936150c2d2f68e216fa5f 100644 (file)
@@ -262,7 +262,7 @@ bool HP_TagHandler::HandleTag(const wxHtmlTag& tag)
                 ESCSEQ("Uuml", "\334"/* Ü */),
     
                 ESCSEQ("szlig", "\247"/* § */),
-                ESCSEQ("agrave","à"),
+                ESCSEQ("agrave","\340"/* à */),
                 ESCSEQ("aacute", "\341"/* á */),
                 ESCSEQ("acirc", "\342"/* â */),
                 ESCSEQ("atilde", "\343"/* ã */),
index fdbdbada98ca232ee04c2bb55ac639d0eea0ce27..daab625a4c30f0005bf7a76e7aa976cf4a684a1f 100644 (file)
@@ -234,7 +234,7 @@ wxHtmlWordCell::wxHtmlWordCell(const wxString& word, wxDC& dc) : wxHtmlCell()
                 ESCSEQ("Uuml", "\334"/* Ü */),
     
                 ESCSEQ("szlig", "\247"/* § */),
-                ESCSEQ("agrave","à"),
+                ESCSEQ("agrave","\340"/* à */),
                 ESCSEQ("aacute", "\341"/* á */),
                 ESCSEQ("acirc", "\342"/* â */),
                 ESCSEQ("atilde", "\343"/* ã */),