]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/winpars.h
Fixed some warnings (don't know why dialoged Makefile is being committed)
[wxWidgets.git] / include / wx / html / winpars.h
index 2c902775864cfb66a1012d160b2b5ddd33e919c1..e44b2f5fba3619acde04d8703511ce72e9ee3b7e 100644 (file)
@@ -57,7 +57,7 @@ class WXDLLEXPORT wxHtmlWinParser : public wxHtmlParser
         // NOTE : these functions do _not_ return _actual_
         // height/width. They return h/w of default font
         // for this DC. If you want actual values, call
-        // GetDC() -> GetChar...()
+        // GetDC()->GetChar...()
         wxWindow *GetWindow() {return m_Window;}
                 // returns associated wxWindow
 
@@ -66,11 +66,12 @@ class WXDLLEXPORT wxHtmlWinParser : public wxHtmlParser
 
         static void AddModule(wxHtmlTagsModule *module);
                 // Adds tags module. see wxHtmlTagsModule for details.
+        static void RemoveModule(wxHtmlTagsModule *module);
 
         // parsing-related methods. These methods are called by tag handlers:
         wxHtmlContainerCell *GetContainer() const {return m_Container;}
             // Returns pointer to actual container. Common use in tag handler is :
-            // m_WParser -> GetContainer() -> InsertCell(new ...);
+            // m_WParser->GetContainer()->InsertCell(new ...);
         wxHtmlContainerCell *OpenContainer();
             // opens new container. This container is sub-container of opened
             // container. Sets GetContainer to newly created container