summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtranslatormessage.3qt
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-23 12:42:20 +0900
commitb35e0845dc9b3c8b9a5e52a682c769f383933fae (patch)
treee4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqtranslatormessage.3qt
parent1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff)
downloadtqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz
tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqtranslatormessage.3qt')
-rw-r--r--doc/man/man3/tqtranslatormessage.3qt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqtranslatormessage.3qt b/doc/man/man3/tqtranslatormessage.3qt
index c7e10c35..80eb19e7 100644
--- a/doc/man/man3/tqtranslatormessage.3qt
+++ b/doc/man/man3/tqtranslatormessage.3qt
@@ -17,7 +17,7 @@ QTranslatorMessage \- Translator message and its properties
.BI "\fBQTranslatorMessage\fR ()"
.br
.ti -1c
-.BI "\fBQTranslatorMessage\fR ( const char * context, const char * sourceText, const char * comment, const QString & translation = QString::null )"
+.BI "\fBQTranslatorMessage\fR ( const char * context, const char * sourceText, const char * comment, const TQString & translation = TQString::null )"
.br
.ti -1c
.BI "\fBQTranslatorMessage\fR ( QDataStream & stream )"
@@ -41,10 +41,10 @@ QTranslatorMessage \- Translator message and its properties
.BI "const char * \fBcomment\fR () const"
.br
.ti -1c
-.BI "void \fBsetTranslation\fR ( const QString & translation )"
+.BI "void \fBsetTranslation\fR ( const TQString & translation )"
.br
.ti -1c
-.BI "QString \fBtranslation\fR () const"
+.BI "TQString \fBtranslation\fR () const"
.br
.ti -1c
.BI "enum \fBPrefix\fR { NoPrefix, Hash, HashContext, HashContextSourceText, HashContextSourceTextComment }"
@@ -101,8 +101,8 @@ Let (\fIh\fR, \fIc\fR, \fIs\fR, \fIm\fR) be the extended key. The possible prefi
See also write() and commonPrefix().
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QTranslatorMessage::QTranslatorMessage ()"
-Constructs a translator message with the extended key (0, 0, 0, 0) and QString::null as translation.
-.SH "QTranslatorMessage::QTranslatorMessage ( const char * context, const char * sourceText, const char * comment, const QString & translation = QString::null )"
+Constructs a translator message with the extended key (0, 0, 0, 0) and TQString::null as translation.
+.SH "QTranslatorMessage::QTranslatorMessage ( const char * context, const char * sourceText, const char * comment, const TQString & translation = TQString::null )"
Constructs an translator message with the extended key (\fIh\fR, \fIcontext\fR, \fIsourceText\fR, \fIcomment\fR), where \fIh\fR is computed from \fIsourceText\fR and \fIcomment\fR, and possibly with a \fItranslation\fR.
.SH "QTranslatorMessage::QTranslatorMessage ( QDataStream & stream )"
Constructs a translator message read from the \fIstream\fR. The resulting message may have any combination of content.
@@ -142,7 +142,7 @@ Returns TRUE if the extended key of this object is equal to that of \fIm\fR; oth
Returns TRUE if the extended key of this object is lexicographically after that of \fIm\fR; otherwise returns FALSE.
.SH "bool QTranslatorMessage::operator>= ( const QTranslatorMessage & m ) const"
Returns TRUE if the extended key of this object is lexicographically after that of \fIm\fR or if they are equal; otherwise returns FALSE.
-.SH "void QTranslatorMessage::setTranslation ( const QString & translation )"
+.SH "void QTranslatorMessage::setTranslation ( const TQString & translation )"
Sets the translation of the source text to \fItranslation\fR.
.PP
See also translation().
@@ -150,7 +150,7 @@ See also translation().
Returns the source text of this message (e.g. "&Save").
.PP
\fBWarning:\fR This may return 0 if the QTranslator object is stripped (compressed).
-.SH "QString QTranslatorMessage::translation () const"
+.SH "TQString QTranslatorMessage::translation () const"
Returns the translation of the source text (e.g., "&Sauvegarder").
.PP
See also setTranslation().