From c3d62ecf557627785a4193928fe529f657016932 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 1 Jun 2001 21:47:27 +0000 Subject: [PATCH] fixed bug #429351 (compilation broken in CJK environment (whatever it is) in 'agrave' definition) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/helpdata.cpp | 2 +- src/html/htmlcell.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/html/helpdata.cpp b/src/html/helpdata.cpp index 4ca2b32192..76e7264ae8 100644 --- a/src/html/helpdata.cpp +++ b/src/html/helpdata.cpp @@ -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"/* ã */), diff --git a/src/html/htmlcell.cpp b/src/html/htmlcell.cpp index fdbdbada98..daab625a4c 100644 --- a/src/html/htmlcell.cpp +++ b/src/html/htmlcell.cpp @@ -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"/* ã */), -- 2.45.2