summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqimage.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqimage.3qt')
-rw-r--r--doc/man/man3/tqimage.3qt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqimage.3qt b/doc/man/man3/tqimage.3qt
index d7b37bc0..7fafb746 100644
--- a/doc/man/man3/tqimage.3qt
+++ b/doc/man/man3/tqimage.3qt
@@ -245,7 +245,7 @@ TQImage \- Hardware-independent pixmap representation with direct access to the
.BI "void \fBsetOffset\fR ( const QPoint & p )"
.br
.ti -1c
-.BI "QValueList<QImageTextKeyLang> \fBtextList\fR () const"
+.BI "TQValueList<QImageTextKeyLang> \fBtextList\fR () const"
.br
.ti -1c
.BI "QStringList \fBtextLanguages\fR () const"
@@ -1007,16 +1007,16 @@ Note that if you want to iterate over the list, you should iterate over a copy,
.fi
.PP
See also textList(), text(), setText(), and textKeys().
-.SH "QValueList<QImageTextKeyLang> TQImage::textList () const"
+.SH "TQValueList<QImageTextKeyLang> TQImage::textList () const"
Returns a list of QImageTextKeyLang objects that enumerate all the texts key/language pairs set by setText() for this image.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QValueList<QImageTextKeyLang> list = myImage.textList();
+ TQValueList<QImageTextKeyLang> list = myImage.textList();
.br
- QValueList<QImageTextKeyLang>::Iterator it = list.begin();
+ TQValueList<QImageTextKeyLang>::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br