diff options
Diffstat (limited to 'doc/man/man3/tqapplication.3qt')
-rw-r--r-- | doc/man/man3/tqapplication.3qt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt index 4e9a030b0..0b91f3d75 100644 --- a/doc/man/man3/tqapplication.3qt +++ b/doc/man/man3/tqapplication.3qt @@ -623,7 +623,7 @@ See also quit(). .SH "TQWidget * QApplication::activeModalWidget ()\fC [static]\fR" Returns the active modal widget. .PP -A modal widget is a special top level widget which is a subclass of QDialog that specifies the modal parameter of the constructor as TRUE. A modal widget must be closed before the user can continue with other parts of the program. +A modal widget is a special top level widget which is a subclass of TQDialog that specifies the modal parameter of the constructor as TRUE. A modal widget must be closed before the user can continue with other parts of the program. .PP Modal widgets are organized in a stack. This function returns the active modal widget at the top of the stack. .PP @@ -1115,7 +1115,7 @@ Example: .PP .nf .br - QPushButton *quitButton = new QPushButton( "Quit" ); + TQPushButton *quitButton = new TQPushButton( "Quit" ); .br connect( quitButton, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) ); .br @@ -1487,7 +1487,7 @@ See also setStartDragDistance(), startDragTime(), and TQPoint::manhattanLength() .SH "int QApplication::startDragTime ()\fC [static]\fR" If you support drag and drop in you application and a drag should start after a mouse click and after a certain time elapsed, you should use the value which this method returns as the delay (in ms). .PP -Qt also uses this delay internally, e.g. in TQTextEdit and QLineEdit, for starting a drag. +Qt also uses this delay internally, e.g. in TQTextEdit and TQLineEdit, for starting a drag. .PP The default value is 500 ms. .PP |