Plugins/VcsPlugins/vcsPySvn/SvnCommitDialog.py

changeset 495
b31b0bffa5b0
parent 13
1af94a91f439
child 496
ed1e3f654d0b
equal deleted inserted replaced
492:01f3384d535a 495:b31b0bffa5b0
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.

eric ide

mercurial