diff options
Diffstat (limited to 'doc/html/qtl-qvaluelist-example.html')
-rw-r--r-- | doc/html/qtl-qvaluelist-example.html | 12 |
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 <<a href="qvaluelist-h.html">qvaluelist.h</a>> -#include <<a href="qstring-h.html">qstring.h</a>> -#include <<a href="qwindowdefs-h.html">qwindowdefs.h</a>> +#include <<a href="qvaluelist-h.html">ntqvaluelist.h</a>> +#include <<a href="qstring-h.html">ntqstring.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="qstring.html">TQString</a>& name, int salary ) + Employee( const <a href="ntqstring.html">TQString</a>& 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; }; |