Browse Source

* Made THTMLWriter.StartElement and EndElement public instead of protected

git-svn-id: trunk@8571 -
joost 18 years ago
parent
commit
1cfdfe6c72
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/fcl-xml/src/htmlwriter.pp

+ 2 - 2
packages/fcl-xml/src/htmlwriter.pp

@@ -37,10 +37,10 @@ type
     function CreateElement (tag : THTMLElementClass; sub : THTMLCustomElement) : THTMLCustomElement;
     function CreateElement (tag : THTMLElementClass; subs : Array of THTMLCustomElement) : THTMLCustomElement;
     function CreateElement (tag : THTMLElementClass; subs : TDOMNodelist) : THTMLCustomElement;
-    function StartElement (tag : THTMLElementClass) : THTMLCustomElement;
-    function EndElement (tag : THTMLElementClass) : THTMLCustomElement;
     function AddElement (tag : THTMLElementClass) : THTMLCustomElement;
   public
+    function StartElement (tag : THTMLElementClass) : THTMLCustomElement;
+    function EndElement (tag : THTMLElementClass) : THTMLCustomElement;
     constructor create (aDocument : THTMLDocument);
     procedure AddElement (el : THTMLCustomElement);
     procedure AddElements (subs : TDOMNodelist);