diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
commit | ea318d1431c89e647598c510c4245c6571aa5f46 (patch) | |
tree | 996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qtl-qvaluelist-example.html | |
parent | aaf89d4b48f69c9293feb187db26362e550b5561 (diff) | |
download | tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip |
Update to latest tqt3 automated conversion
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 fa73c304..bb0f2dd3 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; }; |