src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnCommitDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
48 if vcs.version < (1, 5, 0): 48 if vcs.version < (1, 5, 0):
49 self.changeListsGroup.hide() 49 self.changeListsGroup.hide()
50 else: 50 else:
51 self.changeLists.addItems(sorted(vcs.svnGetChangelists())) 51 self.changeLists.addItems(sorted(vcs.svnGetChangelists()))
52 52
53 def showEvent(self, evt): 53 def showEvent(self, _evt):
54 """ 54 """
55 Protected method called when the dialog is about to be shown. 55 Protected method called when the dialog is about to be shown.
56 56
57 @param evt the event 57 @param _evt reference to the event object (unused)
58 @type QShowEvent 58 @type QShowEvent
59 """ 59 """
60 commitMessages = self.__vcs.vcsCommitMessages() 60 commitMessages = self.__vcs.vcsCommitMessages()
61 self.recentComboBox.clear() 61 self.recentComboBox.clear()
62 self.recentComboBox.addItem("") 62 self.recentComboBox.addItem("")

eric ide

mercurial