summaryrefslogtreecommitdiffstats
path: root/doc/qptrlist.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-24 20:14:25 +0900
commitd73937a9f779e2aafa6c392f94c9c29aa32b78fd (patch)
treee2c52ad435e8cca696acae34b1f451e934675a64 /doc/qptrlist.doc
parenteb42871e999672a8fad5793733c58be05928c8ea (diff)
downloadtqt-r14.1.1.tar.gz
tqt-r14.1.1.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b35e0845dc9b3c8b9a5e52a682c769f383933fae)
Diffstat (limited to 'doc/qptrlist.doc')
-rw-r--r--doc/qptrlist.doc12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/qptrlist.doc b/doc/qptrlist.doc
index 2d753f69f..7540a74be 100644
--- a/doc/qptrlist.doc
+++ b/doc/qptrlist.doc
@@ -79,19 +79,19 @@
{
public:
Employee() : sn( 0 ) { }
- Employee( const QString& forename, const QString& surname, int salary )
+ Employee( const TQString& forename, const TQString& surname, int salary )
: fn( forename ), sn( surname ), sal( salary )
{ }
void setSalary( int salary ) { sal = salary; }
- QString forename() const { return fn; }
- QString surname() const { return sn; }
+ TQString forename() const { return fn; }
+ TQString surname() const { return sn; }
int salary() const { return sal; }
private:
- QString fn;
- QString sn;
+ TQString fn;
+ TQString sn;
int sal;
};
@@ -1052,7 +1052,7 @@
\ingroup tools
\ingroup text
- If you want a string list of \l{QString}s use QStringList.
+ If you want a string list of \l{TQString}s use QStringList.
This class is a QPtrList\<char\> instance (a list of char*).