From 0f92dd542b65bc910caaf190b7c623aa5158c86a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 14 Nov 2011 22:33:41 -0600 Subject: Fix native TQt3 accidental conversion to tquit --- doc/html/qaccel.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/qaccel.html') diff --git a/doc/html/qaccel.html b/doc/html/qaccel.html index b7c1dd7f6..e7e725a89 100644 --- a/doc/html/qaccel.html +++ b/doc/html/qaccel.html @@ -180,7 +180,7 @@ Removes all accelerator items. Connects the accelerator item id to the slot member of receiver.

-        a->connectItem( 201, mainView, SLOT(tquit()) );
+        a->connectItem( 201, mainView, SLOT(quit()) );
     

Of course, you can also send a signal as member. @@ -221,8 +221,8 @@ negative identifier less than -1.

         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
     
-- cgit v1.2.1