diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-07 14:56:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-07 14:56:09 +0900 |
commit | 87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch) | |
tree | 2d674f204c5205ca577a782e1b50583afd563972 /doc/html/distributor-example.html | |
parent | 628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff) | |
download | tqt-87d29563.tar.gz tqt-87d29563.zip |
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/distributor-example.html')
-rw-r--r-- | doc/html/distributor-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/distributor-example.html b/doc/html/distributor-example.html index 069fc25a6..79d095a4c 100644 --- a/doc/html/distributor-example.html +++ b/doc/html/distributor-example.html @@ -176,7 +176,7 @@ static char *find_pattern( char *h, const char *n, ulong hlen ) if ( nlen > hlen ) return 0; - } while ( <a href="ntqcstring.html#qstrncmp">tqstrncmp</a>( h, n, nlen ) != 0 ); + } while ( <a href="tqcstring.html#qstrncmp">tqstrncmp</a>( h, n, nlen ) != 0 ); return h + nlen; } @@ -184,7 +184,7 @@ void Distributor::checkLibData() { struct step { const char *key; - <a href="ntqcstring.html">TQCString</a> value; + <a href="tqcstring.html">TQCString</a> value; bool done; } steps[7]; @@ -330,7 +330,7 @@ void Distributor::accept() { struct step { const char *key; - <a href="ntqcstring.html">TQCString</a> value; + <a href="tqcstring.html">TQCString</a> value; bool done; } steps[7]; @@ -400,7 +400,7 @@ void Distributor::accept() continue; } - <a href="ntqcstring.html#qstrcpy">qstrcpy</a>( s, steps[x].value ); + <a href="tqcstring.html#qstrcpy">qstrcpy</a>( s, steps[x].value ); steps[x].done = TRUE; ++completed; |