From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tagreader-example.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/html/tagreader-example.html') diff --git a/doc/html/tagreader-example.html b/doc/html/tagreader-example.html index 947d614e2..ead7f5fc7 100644 --- a/doc/html/tagreader-example.html +++ b/doc/html/tagreader-example.html @@ -62,12 +62,12 @@ class StructureParser : public TQXmlDefaultHa { public: bool startDocument(); - bool startElement( const TQString&, const TQString&, const TQString& , + bool startElement( const TQString&, const TQString&, const TQString& , const TQXmlAttributes& ); - bool endElement( const TQString&, const TQString&, const TQString& ); + bool endElement( const TQString&, const TQString&, const TQString& ); private: - TQString indent; + TQString indent; }; #endif @@ -88,7 +88,7 @@ private: #include "structureparser.h" #include <stdio.h> -#include <ntqstring.h> +#include <tqstring.h> bool StructureParser::startDocument() { @@ -96,8 +96,8 @@ private: return TRUE; } -bool StructureParser::startElement( const TQString&, const TQString&, - const TQString& qName, +bool StructureParser::startElement( const TQString&, const TQString&, + const TQString& qName, const TQXmlAttributes& ) { printf( "%s%s\n", (const char*)indent, (const char*)qName ); @@ -105,7 +105,7 @@ private: return TRUE; } -bool StructureParser::endElement( const TQString&, const TQString&, const TQString& ) +bool StructureParser::endElement( const TQString&, const TQString&, const TQString& ) { indent.remove( (uint)0, 4 ); return TRUE; -- cgit v1.2.3