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