Thu, 19 Jun 2014 10:00:53 +0200
Fixed an issue causing deleted alternate keyboard shortcuts not being reloaded correctly.
(grafted from 1a6f8d9b63a536611bd0f52cca5d5eb885c9e5fc)
1139 | 1 | # -*- coding: utf-8 -*- |
2 | ||
3 | """ | |
4 | Module implementing $CLASSNAME$. | |
5 | """ | |
6 | ||
7 | from PySide.QtCore import Slot | |
8 | from PySide.QtGui import $SUPERCLASS$ | |
9 | ||
10 | from .Ui_$FORMFILE$ import Ui_$FORMCLASS$ | |
11 | ||
12 | ||
13 | class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$): | |
14 | """ | |
15 | Class documentation goes here. | |
16 | """ | |
17 | def __init__(self, parent=None): | |
18 | """ | |
19 | Constructor | |
20 | ||
21 | @param parent reference to the parent widget (QWidget) | |
22 | """ | |
23 | $SUPERCLASS$.__init__(self, parent) | |
24 | self.setupUi(self) |