21 Class implementing a dialog to enter the commit message. |
21 Class implementing a dialog to enter the commit message. |
22 |
22 |
23 @signal accepted() emitted, if the dialog was accepted |
23 @signal accepted() emitted, if the dialog was accepted |
24 @signal rejected() emitted, if the dialog was rejected |
24 @signal rejected() emitted, if the dialog was rejected |
25 """ |
25 """ |
|
26 accepted = pyqtSignal() |
|
27 rejected = pyqtSignal() |
|
28 |
26 def __init__(self, parent = None): |
29 def __init__(self, parent = None): |
27 """ |
30 """ |
28 Constructor |
31 Constructor |
29 |
32 |
30 @param parent parent widget (QWidget) |
33 @param parent parent widget (QWidget) |