Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.py

changeset 5328
9c11e9285a46
parent 4631
5c1a96925da4
child 5389
9b1c800daff3
equal deleted inserted replaced
5327:1bf444289f77 5328:9c11e9285a46
65 65
66 def getData(self): 66 def getData(self):
67 """ 67 """
68 Public method to retrieve the entered data. 68 Public method to retrieve the entered data.
69 69
70 @return tuple naming the new and old bookmark names 70 @return tuple naming the old and new bookmark names
71 (string, string) 71 (string, string)
72 """ 72 """
73 return ( 73 return (
74 self.bookmarkCombo.currentText().replace(" ", "_"),
74 self.nameEdit.text().replace(" ", "_"), 75 self.nameEdit.text().replace(" ", "_"),
75 self.bookmarkCombo.currentText().replace(" ", "_")
76 ) 76 )

eric ide

mercurial