summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqpicture.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqpicture.3qt')
-rw-r--r--doc/man/man3/tqpicture.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqpicture.3qt b/doc/man/man3/tqpicture.3qt
index 2079920b..477488a7 100644
--- a/doc/man/man3/tqpicture.3qt
+++ b/doc/man/man3/tqpicture.3qt
@@ -40,16 +40,16 @@ Inherits QPaintDevice.
.BI "bool \fBplay\fR ( QPainter * painter )"
.br
.ti -1c
-.BI "bool \fBload\fR ( QIODevice * dev, const char * format = 0 )"
+.BI "bool \fBload\fR ( TQIODevice * dev, const char * format = 0 )"
.br
.ti -1c
-.BI "bool \fBload\fR ( const QString & fileName, const char * format = 0 )"
+.BI "bool \fBload\fR ( const TQString & fileName, const char * format = 0 )"
.br
.ti -1c
-.BI "bool \fBsave\fR ( QIODevice * dev, const char * format = 0 )"
+.BI "bool \fBsave\fR ( TQIODevice * dev, const char * format = 0 )"
.br
.ti -1c
-.BI "bool \fBsave\fR ( const QString & fileName, const char * format = 0 )"
+.BI "bool \fBsave\fR ( const TQString & fileName, const char * format = 0 )"
.br
.ti -1c
.BI "QRect \fBboundingRect\fR () const"
@@ -169,7 +169,7 @@ Detaches from shared picture data and makes sure that this picture is the only o
If multiple pictures share common data, this picture makes a copy of the data and detaches itself from the sharing mechanism. Nothing is done if there is just a single reference.
.SH "bool QPicture::isNull () const"
Returns TRUE if the picture contains no data; otherwise returns FALSE.
-.SH "bool QPicture::load ( const QString & fileName, const char * format = 0 )"
+.SH "bool QPicture::load ( const TQString & fileName, const char * format = 0 )"
Loads a picture from the file specified by \fIfileName\fR and returns TRUE if successful; otherwise returns FALSE.
.PP
By default, the file will be interpreted as being in the native QPicture format. Specifying the \fIformat\fR string is optional and is only needed for importing picture data stored in a different format.
@@ -180,7 +180,7 @@ See also save().
.PP
Examples:
.)l picture/picture.cpp and xform/xform.cpp.
-.SH "bool QPicture::load ( QIODevice * dev, const char * format = 0 )"
+.SH "bool QPicture::load ( TQIODevice * dev, const char * format = 0 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
\fIdev\fR is the device to use for loading.
@@ -198,7 +198,7 @@ Assigns a shallow copy of \fIp\fR to this picture and returns a reference to thi
Replays the picture using \fIpainter\fR, and returns TRUE if successful; otherwise returns FALSE.
.PP
This function does exactly the same as QPainter::drawPicture() with (x, y) = (0, 0).
-.SH "bool QPicture::save ( const QString & fileName, const char * format = 0 )"
+.SH "bool QPicture::save ( const TQString & fileName, const char * format = 0 )"
Saves a picture to the file specified by \fIfileName\fR and returns TRUE if successful; otherwise returns FALSE.
.PP
Specifying the file \fIformat\fR string is optional. It's not recommended unless you intend to export the picture data for use by a third party reader. By default the data will be saved in the native QPicture file format.
@@ -208,7 +208,7 @@ Currently, the only external format supported is the W3C SVG format which requir
See also load().
.PP
Example: picture/picture.cpp.
-.SH "bool QPicture::save ( QIODevice * dev, const char * format = 0 )"
+.SH "bool QPicture::save ( TQIODevice * dev, const char * format = 0 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
\fIdev\fR is the device to use for saving.