]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed wrong parsing of à (typo in tables)
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 16 May 2001 22:10:07 +0000 (22:10 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 16 May 2001 22:10:07 +0000 (22:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10186 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/htmlcell.cpp

index 910c8990acc73daa33b456bc8fca91b19ccbed85..fdbdbada98ca232ee04c2bb55ac639d0eea0ce27 100644 (file)
@@ -234,7 +234,7 @@ wxHtmlWordCell::wxHtmlWordCell(const wxString& word, wxDC& dc) : wxHtmlCell()
                 ESCSEQ("Uuml", "\334"/* Ü */),
     
                 ESCSEQ("szlig", "\247"/* § */),
-                ESCSEQ("agrave;","à"),
+                ESCSEQ("agrave","à"),
                 ESCSEQ("aacute", "\341"/* á */),
                 ESCSEQ("acirc", "\342"/* â */),
                 ESCSEQ("atilde", "\343"/* ã */),