diff options
Diffstat (limited to 'doc/html/tqvaluevector.html')
-rw-r--r-- | doc/html/tqvaluevector.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqvaluevector.html b/doc/html/tqvaluevector.html index a8a28bdf6..527ca3a29 100644 --- a/doc/html/tqvaluevector.html +++ b/doc/html/tqvaluevector.html @@ -139,22 +139,22 @@ more information. <p> Example: <pre> #include <<a href="tqvaluevector-h.html">tqvaluevector.h</a>> - #include <<a href="qstring-h.html">ntqstring.h</a>> + #include <<a href="tqstring-h.html">tqstring.h</a>> #include <stdio.h> class Employee { public: Employee(): s(0) {} - Employee( const <a href="ntqstring.html">TQString</a>& name, int salary ) + Employee( const <a href="tqstring.html">TQString</a>& 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; } private: - <a href="ntqstring.html">TQString</a> n; + <a href="tqstring.html">TQString</a> n; int s; }; |