summaryrefslogtreecommitdiffstats
path: root/src/widgets/qtooltip.cpp
diff options
context:
space:
mode:
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 ec2df8a1..f121a38e 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" );