From 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 24 Jul 2024 19:37:05 +0900 Subject: Rename text class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/xml-sax-features-walkthrough.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/xml-sax-features-walkthrough.html') 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 <ntqlistview.h> #include <ntqgrid.h> #include <tqmainwindow.h> - #include <ntqlabel.h> + #include <tqlabel.h>

structureparser.h contains the API of the XML parser that we implement in structureparser.cpp. @@ -155,21 +155,21 @@ settings (TRUE/TRUE). with the feature setting http://xml.org/sax/features/namespaces FALSE and http://xml.org/sax/features/namespace-prefixes TRUE.

        // namespace label
-        (void) new TQLabel(
+        (void) new TQLabel(
                  "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 TQLabel(
+        (void) new TQLabel(
                  "\n"
                  "http://xml.org/sax/features/namespaces: TRUE\n"
                  "http://xml.org/sax/features/namespace-prefixes: TRUE\n",
                  container );
 
         // prefix label
-        (void) new TQLabel(
+        (void) new TQLabel(
                  "\n"
                  "http://xml.org/sax/features/namespaces: FALSE\n"
                  "http://xml.org/sax/features/namespace-prefixes: TRUE\n",
-- 
cgit v1.2.3