summaryrefslogtreecommitdiffstats
path: root/doc/html/qtl-qvaluelist-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qtl-qvaluelist-example.html')
-rw-r--r--doc/html/qtl-qvaluelist-example.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/qtl-qvaluelist-example.html b/doc/html/qtl-qvaluelist-example.html
index fa73c3044..bb0f2dd34 100644
--- a/doc/html/qtl-qvaluelist-example.html
+++ b/doc/html/qtl-qvaluelist-example.html
@@ -46,9 +46,9 @@ This tiny example shows a <a href="qvaluelistiterator.html">TQValueListIterator<
**
*****************************************************************************/
-#include &lt;<a href="qvaluelist-h.html">qvaluelist.h</a>&gt;
-#include &lt;<a href="qstring-h.html">qstring.h</a>&gt;
-#include &lt;<a href="qwindowdefs-h.html">qwindowdefs.h</a>&gt;
+#include &lt;<a href="qvaluelist-h.html">ntqvaluelist.h</a>&gt;
+#include &lt;<a href="qstring-h.html">ntqstring.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="qstring.html">TQString</a>&amp; name, int salary )
+ Employee( const <a href="ntqstring.html">TQString</a>&amp; name, int salary )
: n(name), s(salary) {}
- <a href="qstring.html">TQString</a> name() const { return n; }
+ <a href="ntqstring.html">TQString</a> name() const { return n; }
int salary() const { return s; }
void setSalary( int salary ) { s = salary; }
@@ -68,7 +68,7 @@ public:
Q_DUMMY_COMPARISON_OPERATOR( Employee )
private:
- <a href="qstring.html">TQString</a> n;
+ <a href="ntqstring.html">TQString</a> n;
int s;
};