summaryrefslogtreecommitdiffstats
path: root/doc/html/qtl-qvaluelist-example.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qtl-qvaluelist-example.html
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-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.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 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 &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;
};