home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL v3'
- __copyright__ = '2010, Kovid Goyal <kovid@kovidgoyal.net>'
- __docformat__ = 'restructuredtext en'
- from calibre.gui2.actions import InterfaceAction
-
- class RestartAction(InterfaceAction):
- name = 'Restart'
- action_spec = (_('&Restart'), None, None, _('Ctrl+R'))
-
- def genesis(self):
- self.qaction.triggered.connect(self.restart)
-
-
- def restart(self, *args):
- self.gui.quit(restart = True)
-
-
-