summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqpushbutton.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqpushbutton.3qt')
-rw-r--r--doc/man/man3/tqpushbutton.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqpushbutton.3qt b/doc/man/man3/tqpushbutton.3qt
index 20ffb02a..7ac93748 100644
--- a/doc/man/man3/tqpushbutton.3qt
+++ b/doc/man/man3/tqpushbutton.3qt
@@ -82,10 +82,10 @@ Inherits QButton.
.BI "virtual void \fBsetText\fR ( const TQString & )"
.br
.ti -1c
-.BI "const QPixmap * \fBpixmap\fR () const"
+.BI "const TQPixmap * \fBpixmap\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetPixmap\fR ( const QPixmap & )"
+.BI "virtual void \fBsetPixmap\fR ( const TQPixmap & )"
.br
.ti -1c
.BI "QKeySequence \fBaccel\fR () const"
@@ -230,7 +230,7 @@ Constructs a push button called \fIname\fR with the parent \fIparent\fR and the
.SH "QPushButton::QPushButton ( const TQIconSet & icon, const TQString & text, TQWidget * parent, const char * name = 0 )"
Constructs a push button with an \fIicon\fR and a \fItext\fR.
.PP
-Note that you can also pass a QPixmap object as an icon (thanks to the implicit type conversion provided by C++).
+Note that you can also pass a TQPixmap object as an icon (thanks to the implicit type conversion provided by C++).
.PP
The \fIparent\fR and \fIname\fR arguments are sent to the TQWidget constructor.
.SH "QPushButton::~QPushButton ()"
@@ -274,7 +274,7 @@ Returns TRUE if the push button has a menu button on it; otherwise returns FALSE
Returns TRUE if the button is toggled; otherwise returns FALSE. See the "on" property for details.
.SH "bool QButton::isToggleButton () const"
Returns TRUE if the button is a toggle button; otherwise returns FALSE. See the "toggleButton" property for details.
-.SH "const QPixmap * QButton::pixmap () const"
+.SH "const TQPixmap * QButton::pixmap () const"
Returns the pixmap shown on the button. See the "pixmap" property for details.
.SH "TQPopupMenu * QPushButton::popup () const"
Returns the button's associated popup menu or 0 if no popup menu has been set.
@@ -309,7 +309,7 @@ Sets the icon set on the push button. See the "iconSet" property for details.
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.SH "void QPushButton::setOn ( bool )\fC [virtual slot]\fR"
Sets whether the push button is toggled. See the "on" property for details.
-.SH "void QButton::setPixmap ( const QPixmap & )\fC [virtual]\fR"
+.SH "void QButton::setPixmap ( const TQPixmap & )\fC [virtual]\fR"
Sets the pixmap shown on the button. See the "pixmap" property for details.
.SH "void QPushButton::setPopup ( TQPopupMenu * popup )"
Associates the popup menu \fIpopup\fR with this push button. This turns the button into a menu button.
@@ -417,7 +417,7 @@ This property should only be set for toggle push buttons. The default value is F
See also on, toggle(), toggled(), and toggleButton.
.PP
Set this property's value with setOn().
-.SH "QPixmap pixmap"
+.SH "TQPixmap pixmap"
This property holds the pixmap shown on the button.
.PP
If the pixmap is monochrome (i.e. it is a TQBitmap or its depth is 1) and it does not have a mask, this property will set the pixmap to be its own mask. The purpose of this is to draw transparent bitmaps which are important for toggle buttons, for example.