diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 12:20:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 12:20:38 +0900 |
commit | 0881ed5059c46ce73e8241e6260b82b92f6d0e55 (patch) | |
tree | 6d1d4883cc07ad22b11017d0714d4c26e1ce1b94 /doc/xml-sax-features-walkthrough.doc | |
parent | 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (diff) | |
download | tqt3-0881ed5059c46ce73e8241e6260b82b92f6d0e55.tar.gz tqt3-0881ed5059c46ce73e8241e6260b82b92f6d0e55.zip |
Rename ptr nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/xml-sax-features-walkthrough.doc')
-rw-r--r-- | doc/xml-sax-features-walkthrough.doc | 6 |
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 |