diff options
author | Michele Calgaro <[email protected]> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/qtl-qvaluelist-example.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/qtl-qvaluelist-example.html')
-rw-r--r-- | doc/html/qtl-qvaluelist-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qtl-qvaluelist-example.html b/doc/html/qtl-qvaluelist-example.html index f42d0300b..0e68c0e18 100644 --- a/doc/html/qtl-qvaluelist-example.html +++ b/doc/html/qtl-qvaluelist-example.html @@ -47,7 +47,7 @@ This tiny example shows a <a href="tqvaluelistiterator.html">TQValueListIterator *****************************************************************************/ #include <<a href="tqvaluelist-h.html">tqvaluelist.h</a>> -#include <<a href="qstring-h.html">ntqstring.h</a>> +#include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="qwindowdefs-h.html">ntqwindowdefs.h</a>> #include <stdio.h> @@ -56,10 +56,10 @@ class Employee { public: Employee(): s(0) {} - Employee( const <a href="ntqstring.html">TQString</a>& name, int salary ) + Employee( const <a href="tqstring.html">TQString</a>& name, int salary ) : n(name), s(salary) {} - <a href="ntqstring.html">TQString</a> name() const { return n; } + <a href="tqstring.html">TQString</a> name() const { return n; } int salary() const { return s; } void setSalary( int salary ) { s = salary; } @@ -68,7 +68,7 @@ public: TQ_DUMMY_COMPARISON_OPERATOR( Employee ) private: - <a href="ntqstring.html">TQString</a> n; + <a href="tqstring.html">TQString</a> n; int s; }; |