summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtranslator.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqtranslator.3qt')
-rw-r--r--doc/man/man3/tqtranslator.3qt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqtranslator.3qt b/doc/man/man3/tqtranslator.3qt
index cc41b06f3..5a84db4ef 100644
--- a/doc/man/man3/tqtranslator.3qt
+++ b/doc/man/man3/tqtranslator.3qt
@@ -64,7 +64,7 @@ Inherits TQObject.
.BI "void \fBunsqueeze\fR ()"
.br
.ti -1c
-.BI "QValueList<QTranslatorMessage> \fBmessages\fR () const"
+.BI "TQValueList<QTranslatorMessage> \fBmessages\fR () const"
.br
.ti -1c
.BI "bool \fBisEmpty\fR () const"
@@ -222,16 +222,16 @@ This is an overloaded member function, provided for convenience. It behaves esse
Loads the .qm file data \fIdata\fR of length \fIlen\fR into the translator. Returns TRUE if the data is loaded successfully; otherwise returns FALSE.
.PP
The data is not copied. The caller must be able to guarantee that \fIdata\fR will not be deleted or modified.
-.SH "QValueList<QTranslatorMessage> QTranslator::messages () const"
+.SH "TQValueList<QTranslatorMessage> QTranslator::messages () const"
Returns a list of the messages in the translator. This function is rather slow. Because it is seldom called, it's optimized for simplicity and small size, rather than speed.
.PP
If you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QValueList<QTranslatorMessage> list = myTranslator.messages();
+ TQValueList<QTranslatorMessage> list = myTranslator.messages();
.br
- QValueList<QTranslatorMessage>::Iterator it = list.begin();
+ TQValueList<QTranslatorMessage>::Iterator it = list.begin();
.br
while ( it != list.end() ) {
.br