diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-14 22:33:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-14 22:33:41 -0600 |
commit | 0f92dd542b65bc910caaf190b7c623aa5158c86a (patch) | |
tree | 120ab7e08fa0ffc354ef58d100f79a33c92aa6e6 /doc/man/man3/qtooltip.3qt | |
parent | d796c9dd933ab96ec83b9a634feedd5d32e1ba3f (diff) | |
download | tqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.tar.gz tqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.zip |
Fix native TQt3 accidental conversion to tquit
Diffstat (limited to 'doc/man/man3/qtooltip.3qt')
-rw-r--r-- | doc/man/man3/qtooltip.3qt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/qtooltip.3qt b/doc/man/man3/qtooltip.3qt index 2511f9ed4..30be67b73 100644 --- a/doc/man/man3/qtooltip.3qt +++ b/doc/man/man3/qtooltip.3qt @@ -125,7 +125,7 @@ To add a tip to a widget, call the \fIstatic\fR function QToolTip::add() with th .PP .nf .br - QToolTip::add( tquitButton, "Leave the application" ); + QToolTip::add( quitButton, "Leave the application" ); .br .fi .PP @@ -133,7 +133,7 @@ This is the simplest and most common use of QToolTip. The tip will be deleted au .PP .nf .br - QToolTip::remove( tquitButton ); + QToolTip::remove( quitButton ); .br .fi .PP @@ -141,7 +141,7 @@ You can also display another text (typically in a status bar), courtesy of QTool .PP .nf .br - QToolTip::add( tquitButton, "Leave the application", grp, + QToolTip::add( quitButton, "Leave the application", grp, .br "Leave the application, prompting to save if necessary" ); .br |