]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/httaghnd.tex
undefine _DEFINE_LIST before redefining it; also rename it to have WX prefix
[wxWidgets.git] / docs / latex / wx / httaghnd.tex
index 506084488614a1514423e764cc71adf9b9e5eee6..d96dc842fc1ebbd8d663b635865b60d6974ced45 100644 (file)
 
 <wx/html/htmlpars.h>
 
+\wxheading{Library}
+
+\helpref{wxHtml}{librarieslist}
+
 \wxheading{See Also}
 
 \helpref{Overview}{handlers},
@@ -45,13 +49,13 @@ are delimited by ','. Example : {\tt "I,B,FONT,P" }
 \func{virtual bool}{HandleTag}{\param{const wxHtmlTag\& }{tag}}
 
 This is the core method of each handler. It is called each time
-one of supported tags is detected. {\it tag} contains all neccessary
+one of supported tags is detected. {\it tag} contains all necessary
 info (see \helpref{wxHtmlTag}{wxhtmltag} for details).
 
 \wxheading{Return value}
 
-TRUE if \helpref{ParseInner}{wxhtmltaghandlerparseinner} was called,
-FALSE otherwise.
+true if \helpref{ParseInner}{wxhtmltaghandlerparseinner} was called,
+false otherwise.
 
 \wxheading{Example}
 
@@ -66,14 +70,14 @@ bool MyHandler::HandleTag(const wxHtmlTag& tag)
 }
 \end{verbatim}
 
-You shouldn't call ParseInner if the tag is not paired with ending one.
+You shouldn't call ParseInner if the tag is not paired with an ending one.
 
 \membersection{wxHtmlTagHandler::ParseInner}\label{wxhtmltaghandlerparseinner}
 
 \func{void}{ParseInner}{\param{const wxHtmlTag\& }{tag}}
 
 This method calls parser's \helpref{DoParsing}{wxhtmlparserdoparsing} method
-for the string between this tag and paired ending tag:
+for the string between this tag and the paired ending tag:
 
 \begin{verbatim}
 ...<A HREF="x.htm">Hello, world!</A>...