summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqbrush.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqbrush.3qt')
-rw-r--r--doc/man/man3/tqbrush.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqbrush.3qt b/doc/man/man3/tqbrush.3qt
index e60c1fcf..8bf55904 100644
--- a/doc/man/man3/tqbrush.3qt
+++ b/doc/man/man3/tqbrush.3qt
@@ -22,10 +22,10 @@ Inherits Qt.
.BI "\fBQBrush\fR ( BrushStyle style )"
.br
.ti -1c
-.BI "\fBQBrush\fR ( const QColor & color, BrushStyle style = SolidPattern )"
+.BI "\fBQBrush\fR ( const TQColor & color, BrushStyle style = SolidPattern )"
.br
.ti -1c
-.BI "\fBQBrush\fR ( const QColor & color, const QPixmap & pixmap )"
+.BI "\fBQBrush\fR ( const TQColor & color, const QPixmap & pixmap )"
.br
.ti -1c
.BI "\fBQBrush\fR ( const QBrush & b )"
@@ -43,10 +43,10 @@ Inherits Qt.
.BI "void \fBsetStyle\fR ( BrushStyle s )"
.br
.ti -1c
-.BI "const QColor & \fBcolor\fR () const"
+.BI "const TQColor & \fBcolor\fR () const"
.br
.ti -1c
-.BI "void \fBsetColor\fR ( const QColor & c )"
+.BI "void \fBsetColor\fR ( const TQColor & c )"
.br
.ti -1c
.BI "QPixmap * \fBpixmap\fR () const"
@@ -77,7 +77,7 @@ A brush has a style and a color. One of the brush styles is a custom pattern, wh
.PP
The brush style defines the fill pattern. The default brush style is NoBrush (depending on how you construct a brush). This style tells the painter to not fill shapes. The standard style for filling is SolidPattern.
.PP
-The brush color defines the color of the fill pattern. The QColor documentation lists the predefined colors.
+The brush color defines the color of the fill pattern. The TQColor documentation lists the predefined colors.
.PP
Use the QPen class for specifying line/outline styles.
.PP
@@ -123,11 +123,11 @@ Constructs a default black brush with the style NoBrush (will not fill shapes).
Constructs a black brush with the style \fIstyle\fR.
.PP
See also setStyle().
-.SH "QBrush::QBrush ( const QColor & color, BrushStyle style = SolidPattern )"
+.SH "QBrush::QBrush ( const TQColor & color, BrushStyle style = SolidPattern )"
Constructs a brush with the color \fIcolor\fR and the style \fIstyle\fR.
.PP
See also setColor() and setStyle().
-.SH "QBrush::QBrush ( const QColor & color, const QPixmap & pixmap )"
+.SH "QBrush::QBrush ( const TQColor & color, const QPixmap & pixmap )"
Constructs a brush with the color \fIcolor\fR and a custom pattern stored in \fIpixmap\fR.
.PP
The color will only have an effect for monochrome pixmaps, i.e. for QPixmap::depth() == 1.
@@ -139,7 +139,7 @@ See also setColor() and setPixmap().
Constructs a brush that is a shallow copy of \fIb\fR.
.SH "QBrush::~QBrush ()"
Destroys the brush.
-.SH "const QColor & QBrush::color () const"
+.SH "const TQColor & QBrush::color () const"
Returns the brush color.
.PP
See also setColor().
@@ -163,7 +163,7 @@ Returns a pointer to the custom brush pattern, or 0 if no custom brush pattern h
See also setPixmap().
.PP
Example: richtext/richtext.cpp.
-.SH "void QBrush::setColor ( const QColor & c )"
+.SH "void QBrush::setColor ( const TQColor & c )"
Sets the brush color to \fIc\fR.
.PP
See also color() and setStyle().