diff options
Diffstat (limited to 'examples2/addressbook.py')
-rwxr-xr-x | examples2/addressbook.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples2/addressbook.py b/examples2/addressbook.py index e151996..6d7309b 100755 --- a/examples2/addressbook.py +++ b/examples2/addressbook.py @@ -396,7 +396,7 @@ class ABMainWindow(TQMainWindow): self.file.insertSeparator() #self.file.insertItem( 'Close', self.closeWindow, TQt.CTRL + TQt.Key_W ) self.file.insertItem('Close', self, SLOT('close()'), TQt.CTRL+TQt.Key_W) - self.file.insertItem( 'Quit', qApp, SLOT( 'quit()' ), TQt.CTRL + TQt.Key_Q ) + self.file.insertItem( 'Quit', tqApp, SLOT( 'quit()' ), TQt.CTRL + TQt.Key_Q ) def setupFileTools( self ): pass |