summaryrefslogtreecommitdiffstats
path: root/src/kernel/qaccel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qaccel.cpp')
-rw-r--r--src/kernel/qaccel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qaccel.cpp b/src/kernel/qaccel.cpp
index b761c7365..6c4dcde23 100644
--- a/src/kernel/qaccel.cpp
+++ b/src/kernel/qaccel.cpp
@@ -685,8 +685,8 @@ static int get_seq_id()
\code
TQAccel *a = new TQAccel( myWindow ); // create accels for myWindow
a->insertItem( CTRL + Key_P, 200 ); // Ctrl+P, e.g. to print document
- a->insertItem( ALT + Key_X, 201 ); // Alt+X, e.g. to tquit
- a->insertItem( UNICODE_ACCEL + 'q', 202 ); // Unicode 'q', e.g. to tquit
+ a->insertItem( ALT + Key_X, 201 ); // Alt+X, e.g. to quit
+ a->insertItem( UNICODE_ACCEL + 'q', 202 ); // Unicode 'q', e.g. to quit
a->insertItem( Key_D ); // gets a unique negative id < -1
a->insertItem( CTRL + SHIFT + Key_P ); // gets a unique negative id < -1
\endcode
@@ -781,7 +781,7 @@ void TQAccel::setItemEnabled( int id, bool enable )
receiver.
\code
- a->connectItem( 201, mainView, SLOT(tquit()) );
+ a->connectItem( 201, mainView, SLOT(quit()) );
\endcode
Of course, you can also send a signal as \a member.