diff options
author | Michele Calgaro <[email protected]> | 2023-11-18 15:42:48 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-19 23:33:47 +0900 |
commit | 089d5266f0fbf9be6612e9c5f92a3f008f29241c (patch) | |
tree | e2c5625c37ba83b0848bbb212a45995ceec84139 /doc/man/man3/tqpixmap.3qt | |
parent | d21227053cca7f565e2473a3fc0f8f8a07b298c2 (diff) | |
download | tqt3-089d5266f0fbf9be6612e9c5f92a3f008f29241c.tar.gz tqt3-089d5266f0fbf9be6612e9c5f92a3f008f29241c.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqpixmap.3qt')
-rw-r--r-- | doc/man/man3/tqpixmap.3qt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqpixmap.3qt b/doc/man/man3/tqpixmap.3qt index 7fc68d2b3..9fbe52334 100644 --- a/doc/man/man3/tqpixmap.3qt +++ b/doc/man/man3/tqpixmap.3qt @@ -78,7 +78,7 @@ Inherited by QBitmap and QCanvasPixmap. .BI "int \fBdepth\fR () const" .br .ti -1c -.BI "void \fBfill\fR ( const TQColor & fillColor = Qt::white )" +.BI "void \fBfill\fR ( const TQColor & fillColor = TQt::white )" .br .ti -1c .BI "void \fBfill\fR ( const TQWidget * widget, int xofs, int yofs )" @@ -319,7 +319,7 @@ The \fIfileName\fR, \fIformat\fR and \fIconversion_flags\fR parameters are passe .PP If the image needs to be modified to fit in a lower-resolution result (e.g. converting from 32-bit to 8-bit), use the \fIconversion_flags\fR to specify how you'd prefer this to happen. .PP -See also Qt::ImageConversionFlags, isNull(), load(), loadFromData(), save(), and imageFormat(). +See also TQt::ImageConversionFlags, isNull(), load(), loadFromData(), save(), and imageFormat(). .SH "QPixmap::QPixmap ( const char * xpm[] )" Constructs a pixmap from \fIxpm\fR, which must be a valid XPM image. .PP @@ -355,7 +355,7 @@ Destroys the pixmap. .SH "bool QPixmap::convertFromImage ( const TQImage & img, int conversion_flags )" Converts image \fIimg\fR and sets this pixmap. Returns TRUE if successful; otherwise returns FALSE. .PP -The \fIconversion_flags\fR argument is a bitwise-OR of the Qt::ImageConversionFlags. Passing 0 for \fIconversion_flags\fR sets all the default options. +The \fIconversion_flags\fR argument is a bitwise-OR of the TQt::ImageConversionFlags. Passing 0 for \fIconversion_flags\fR sets all the default options. .PP Note that even though a QPixmap with depth 1 behaves much like a QBitmap, isQBitmap() returns FALSE. .PP @@ -419,7 +419,7 @@ A pixmap is automatically detached by TQt whenever its contents is about to chan It is possible to modify a pixmap without letting TQt know. You can first obtain the system-dependent handle() and then call system-specific functions (for instance, BitBlt under Windows) that modify the pixmap contents. In such cases, you can call detach() to cut the pixmap loose from other pixmaps that share data with this one. .PP detach() returns immediately if there is just a single reference or if the pixmap has not been initialized yet. -.SH "void QPixmap::fill ( const TQColor & fillColor = Qt::white )" +.SH "void QPixmap::fill ( const TQColor & fillColor = TQt::white )" Fills the pixmap with the color \fIfillColor\fR. .PP Examples: |