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