diff options
author | Michele Calgaro <[email protected]> | 2024-06-05 19:02:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-05 19:02:23 +0900 |
commit | 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch) | |
tree | d62f4174c0e58e1aa895fc71484d068b614cd6de /doc/man/man3/tqtranslator.3qt | |
parent | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff) | |
download | tqt3-1f0ce8533cc837aa2d4155b5fc17d2004bed0197.tar.gz tqt3-1f0ce8533cc837aa2d4155b5fc17d2004bed0197.zip |
Rename template library nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqtranslator.3qt')
-rw-r--r-- | doc/man/man3/tqtranslator.3qt | 8 |
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 |