summaryrefslogtreecommitdiffstats
path: root/doc/html/qtl-qvaluelist-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-06-06 13:44:12 +0900
committerMichele Calgaro <[email protected]>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/qtl-qvaluelist-example.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-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.html8
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 &lt;<a href="tqvaluelist-h.html">tqvaluelist.h</a>&gt;
-#include &lt;<a href="qstring-h.html">ntqstring.h</a>&gt;
+#include &lt;<a href="tqstring-h.html">tqstring.h</a>&gt;
#include &lt;<a href="qwindowdefs-h.html">ntqwindowdefs.h</a>&gt;
#include &lt;stdio.h&gt;
@@ -56,10 +56,10 @@ class Employee
{
public:
Employee(): s(0) {}
- Employee( const <a href="ntqstring.html">TQString</a>&amp; name, int salary )
+ Employee( const <a href="tqstring.html">TQString</a>&amp; 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;
};