diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/xml-sax-features-walkthrough.html | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip |
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/xml-sax-features-walkthrough.html')
-rw-r--r-- | doc/html/xml-sax-features-walkthrough.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/xml-sax-features-walkthrough.html b/doc/html/xml-sax-features-walkthrough.html index d9a201a89..51708fff9 100644 --- a/doc/html/xml-sax-features-walkthrough.html +++ b/doc/html/xml-sax-features-walkthrough.html @@ -62,7 +62,7 @@ part: we include all the classes we need: #include <<a href="qlistview-h.html">ntqlistview.h</a>> #include <<a href="qgrid-h.html">ntqgrid.h</a>> #include <<a href="tqmainwindow-h.html">tqmainwindow.h</a>> - #include <<a href="qlabel-h.html">ntqlabel.h</a>> + #include <<a href="tqlabel-h.html">tqlabel.h</a>> </pre> <p> <a href="#structureparser.h">structureparser.h</a> contains the API of the XML parser that we implement in <a href="#structureparser.cpp">structureparser.cpp.</a> @@ -155,21 +155,21 @@ settings (TRUE/TRUE). with the feature setting <em>http://xml.org/sax/features/namespaces</em> FALSE and <em>http://xml.org/sax/features/namespace-prefixes</em> TRUE. <p> <pre> // namespace label - (void) new <a href="ntqlabel.html">TQLabel</a>( + (void) new <a href="tqlabel.html">TQLabel</a>( "Default:\n" "http://xml.org/sax/features/namespaces: TRUE\n" "http://xml.org/sax/features/namespace-prefixes: FALSE\n", container ); // namespace prefix label - (void) new <a href="ntqlabel.html">TQLabel</a>( + (void) new <a href="tqlabel.html">TQLabel</a>( "\n" "http://xml.org/sax/features/namespaces: TRUE\n" "http://xml.org/sax/features/namespace-prefixes: TRUE\n", container ); // prefix label - (void) new <a href="ntqlabel.html">TQLabel</a>( + (void) new <a href="tqlabel.html">TQLabel</a>( "\n" "http://xml.org/sax/features/namespaces: FALSE\n" "http://xml.org/sax/features/namespace-prefixes: TRUE\n", |