103 def on_buttonBox_accepted(self): |
103 def on_buttonBox_accepted(self): |
104 """ |
104 """ |
105 Private slot called by the buttonBox accepted signal. |
105 Private slot called by the buttonBox accepted signal. |
106 """ |
106 """ |
107 self.close() |
107 self.close() |
108 self.emit(SIGNAL("accepted()")) |
108 self.accepted.emit() |
109 |
109 |
110 def on_buttonBox_rejected(self): |
110 def on_buttonBox_rejected(self): |
111 """ |
111 """ |
112 Private slot called by the buttonBox rejected signal. |
112 Private slot called by the buttonBox rejected signal. |
113 """ |
113 """ |
114 self.close() |
114 self.close() |
115 self.emit(SIGNAL("rejected()")) |
115 self.rejected.emit() |
116 |
116 |
117 @pyqtSlot(str) |
117 @pyqtSlot(str) |
118 def on_recentComboBox_activated(self, txt): |
118 def on_recentComboBox_activated(self, txt): |
119 """ |
119 """ |
120 Private slot to select a commit message from recent ones. |
120 Private slot to select a commit message from recent ones. |