summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqpen.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqpen.3qt')
-rw-r--r--doc/man/man3/tqpen.3qt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqpen.3qt b/doc/man/man3/tqpen.3qt
index 50ec2848..9ce81f70 100644
--- a/doc/man/man3/tqpen.3qt
+++ b/doc/man/man3/tqpen.3qt
@@ -87,7 +87,7 @@ The QPen class defines how a QPainter should draw lines and outlines of shapes.
.PP
A pen has a style, width, color, cap style and join style.
.PP
-The pen style defines the line type. The default pen style is Qt::SolidLine. Setting the style to NoPen tells the painter to not draw lines or outlines.
+The pen style defines the line type. The default pen style is TQt::SolidLine. Setting the style to NoPen tells the painter to not draw lines or outlines.
.PP
When drawing 1 pixel wide diagonal lines you can either use a very fast algorithm (specified by a line width of 0, which is the default), or a slower but more accurate algorithm (specified by a line width of 1). For horizontal and vertical lines a line width of 0 is the same as a line width of 1. The cap and join style have no effect on 0-width lines.
.PP
@@ -119,7 +119,7 @@ Example:
.br
.fi
.PP
-See the Qt::PenStyle enum type for a complete list of pen styles.
+See the TQt::PenStyle enum type for a complete list of pen styles.
.PP
With reference to the end points of lines, for wide (non-0-width) pens it depends on the cap style whether the end point is drawn or not. QPainter will try to make sure that the end point is drawn for 0-width pens, but this cannot be absolutely guaranteed because the underlying drawing engine is free to use any (typically accelerated) algorithm for drawing 0-width lines. On all tested systems, however, the end point of at least all non-diagonal lines are drawn.
.PP
@@ -223,7 +223,7 @@ Example: themes/wood.cpp.
.SH "void QPen::setStyle ( PenStyle s )"
Sets the pen style to \fIs\fR.
.PP
-See the Qt::PenStyle documentation for a list of all the styles.
+See the TQt::PenStyle documentation for a list of all the styles.
.PP
\fBWarning:\fR On Mac OS X the style setting (other than NoPen and SolidLine) have no effect as they are not implemented by the underlying system.
.PP