summaryrefslogtreecommitdiffstats
path: root/doc/xml-sax-features-walkthrough.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/xml-sax-features-walkthrough.doc')
-rw-r--r--doc/xml-sax-features-walkthrough.doc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/xml-sax-features-walkthrough.doc b/doc/xml-sax-features-walkthrough.doc
index baffbbe1d..72ca41d2a 100644
--- a/doc/xml-sax-features-walkthrough.doc
+++ b/doc/xml-sax-features-walkthrough.doc
@@ -235,7 +235,7 @@ All we have to implement so far is content handling.
In addition we have a function that selects a listview
for the output.
-\printuntil QPtrStack
+\printuntil TQPtrStack
Keep in mind that we write a SAX2 parser that doesn't
have an object model to keep all elements and attributes
@@ -323,13 +323,13 @@ Therefore we define a \l QListViewItem variable.
As long as the element \e stack isn't empty the current element
is a child of the topmost (last unclosed) element on the stack. Thus we
-create a new \l QListViewItem as a child of QPtrStack::stack.top() with
+create a new \l QListViewItem as a child of TQPtrStack::stack.top() with
the new element's qualified name in the first column and the according
namespace URI (or nothing) in the second one.
The QListViewItem is usally inserted as the first child. This means that we
would get the elements in reverse order. So we first search for the last
-child of the QPtrStack::stack.top() element and insert it after this
+child of the TQPtrStack::stack.top() element and insert it after this
element.
In a valid XML document this applies to all elements except