]> git.saurik.com Git - wxWidgets.git/commitdiff
made some wxHtmlEntitiesParser's methods public -- turned out they are useful
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 8 Aug 2001 23:18:39 +0000 (23:18 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 8 Aug 2001 23:18:39 +0000 (23:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11333 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/htmlpars.h

index 25d9c5991e175b64dc35b9603011ca1eb3d25d16..aef73949fb4a282cf6071c7d82d83d958cdb0cfc 100644 (file)
@@ -225,11 +225,14 @@ public:
     // Parses entities in input and replaces them with respective characters
     // (with respect to output encoding)
     wxString Parse(const wxString& input);
-    
-protected:
+
+    // Returns character for given entity
     wxChar GetEntityChar(const wxString& entity);
+
+    // Returns character that represents given Unicode code
     wxChar GetCharForCode(unsigned code);
 
+protected:
 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
     wxMBConv *m_conv;
     wxFontEncoding m_encoding;