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.3qt40
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/man/man3/tqimage.3qt b/doc/man/man3/tqimage.3qt
index 4e245f6d..42ba2b56 100644
--- a/doc/man/man3/tqimage.3qt
+++ b/doc/man/man3/tqimage.3qt
@@ -248,10 +248,10 @@ TQImage \- Hardware-independent pixmap representation with direct access to the
.BI "TQValueList<TQImageTextKeyLang> \fBtextList\fR () const"
.br
.ti -1c
-.BI "QStringList \fBtextLanguages\fR () const"
+.BI "TQStringList \fBtextLanguages\fR () const"
.br
.ti -1c
-.BI "QStringList \fBtextKeys\fR () const"
+.BI "TQStringList \fBtextKeys\fR () const"
.br
.ti -1c
.BI "TQString \fBtext\fR ( const char * key, const char * lang = 0 ) const"
@@ -278,16 +278,16 @@ TQImage \- Hardware-independent pixmap representation with direct access to the
.BI "const char * \fBimageFormat\fR ( const TQString & fileName )"
.br
.ti -1c
-.BI "QStrList \fBinputFormats\fR ()"
+.BI "TQStrList \fBinputFormats\fR ()"
.br
.ti -1c
-.BI "QStrList \fBoutputFormats\fR ()"
+.BI "TQStrList \fBoutputFormats\fR ()"
.br
.ti -1c
-.BI "QStringList \fBinputFormatList\fR ()"
+.BI "TQStringList \fBinputFormatList\fR ()"
.br
.ti -1c
-.BI "QStringList \fBoutputFormatList\fR ()"
+.BI "TQStringList \fBoutputFormatList\fR ()"
.br
.in -1c
.SH RELATED FUNCTION DOCUMENTATION
@@ -647,16 +647,16 @@ Returns a string that specifies the image format of the file \fIfileName\fR, or
The TQImageIO documentation lists the guaranteed supported image formats, or use TQImage::inputFormats() and TQImage::outputFormats() to get lists that include the installed formats.
.PP
See also load() and save().
-.SH "QStringList TQImage::inputFormatList ()\fC [static]\fR"
+.SH "TQStringList TQImage::inputFormatList ()\fC [static]\fR"
Returns a list of image formats that are supported for image input.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QStringList list = myImage.inputFormatList();
+ TQStringList list = myImage.inputFormatList();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
@@ -671,7 +671,7 @@ Note that if you want to iterate over the list, you should iterate over a copy,
See also outputFormatList(), inputFormats(), and TQImageIO.
.PP
Example: showimg/showimg.cpp.
-.SH "QStrList TQImage::inputFormats ()\fC [static]\fR"
+.SH "TQStrList TQImage::inputFormats ()\fC [static]\fR"
Returns a list of image formats that are supported for image input.
.PP
See also outputFormats(), inputFormatList(), and TQImageIO.
@@ -765,16 +765,16 @@ Makes a call to QPixmap::convertToImage().
Returns TRUE if this image and image \fIi\fR have the same contents; otherwise returns FALSE. The comparison can be slow, unless there is some obvious difference, such as different widths, in which case the function will return quickly.
.PP
See also operator=().
-.SH "QStringList TQImage::outputFormatList ()\fC [static]\fR"
+.SH "TQStringList TQImage::outputFormatList ()\fC [static]\fR"
Returns a list of image formats that are supported for image output.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QStringList list = myImage.outputFormatList();
+ TQStringList list = myImage.outputFormatList();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
@@ -787,7 +787,7 @@ Note that if you want to iterate over the list, you should iterate over a copy,
.fi
.PP
See also inputFormatList(), outputFormats(), and TQImageIO.
-.SH "QStrList TQImage::outputFormats ()\fC [static]\fR"
+.SH "TQStrList TQImage::outputFormats ()\fC [static]\fR"
Returns a list of image formats that are supported for image output.
.PP
See also inputFormats(), outputFormatList(), and TQImageIO.
@@ -963,16 +963,16 @@ Returns the string recorded for the keyword \fIkey\fR in language \fIlang\fR, or
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns the string recorded for the keyword and language \fIkl\fR.
-.SH "QStringList TQImage::textKeys () const"
+.SH "TQStringList TQImage::textKeys () const"
Returns the keywords for which some texts are recorded.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QStringList list = myImage.textKeys();
+ TQStringList list = myImage.textKeys();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
@@ -985,16 +985,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 textLanguages().
-.SH "QStringList TQImage::textLanguages () const"
+.SH "TQStringList TQImage::textLanguages () const"
Returns the language identifiers for which some texts are recorded.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QStringList list = myImage.textLanguages();
+ TQStringList list = myImage.textLanguages();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br