summaryrefslogtreecommitdiffstats
path: root/src/widgets/qtooltip.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-14 22:33:41 -0600
committerTimothy Pearson <[email protected]>2011-11-14 22:33:41 -0600
commit0f92dd542b65bc910caaf190b7c623aa5158c86a (patch)
tree120ab7e08fa0ffc354ef58d100f79a33c92aa6e6 /src/widgets/qtooltip.cpp
parentd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (diff)
downloadtqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.tar.gz
tqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.zip
Fix native TQt3 accidental conversion to tquit
Diffstat (limited to 'src/widgets/qtooltip.cpp')
-rw-r--r--src/widgets/qtooltip.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widgets/qtooltip.cpp b/src/widgets/qtooltip.cpp
index ec2df8a15..f121a38ea 100644
--- a/src/widgets/qtooltip.cpp
+++ b/src/widgets/qtooltip.cpp
@@ -686,15 +686,15 @@ void TQTipManager::setWakeUpDelay ( int i )
TQToolTip::add() with the widget and tip as arguments:
\code
- TQToolTip::add( tquitButton, "Leave the application" );
+ TQToolTip::add( quitButton, "Leave the application" );
\endcode
This is the simplest and most common use of TQToolTip. The tip
- will be deleted automatically when \e tquitButton is deleted, but
+ will be deleted automatically when \e quitButton is deleted, but
you can remove it yourself, too:
\code
- TQToolTip::remove( tquitButton );
+ TQToolTip::remove( quitButton );
\endcode
You can also display another text (typically in a \link TQStatusBar
@@ -703,7 +703,7 @@ void TQTipManager::setWakeUpDelay ( int i )
connected to the appropriate status bar:
\code
- TQToolTip::add( tquitButton, "Leave the application", grp,
+ TQToolTip::add( quitButton, "Leave the application", grp,
"Leave the application, prompting to save if necessary" );
TQToolTip::add( closeButton, "Close this window", grp,
"Close this window, prompting to save if necessary" );