Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarkDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3008
7848489bcb92
child 3145
a9de05d4a22f
equal deleted inserted replaced
3056:9986ec0e559a 3057:10516539f238
20 Class mplementing the bookmark dialog. 20 Class mplementing the bookmark dialog.
21 """ 21 """
22 DEFINE_MODE = 0 22 DEFINE_MODE = 0
23 MOVE_MODE = 1 23 MOVE_MODE = 1
24 24
25 def __init__(self, mode, tagsList, branchesList, bookmarksList, parent=None): 25 def __init__(self, mode, tagsList, branchesList, bookmarksList,
26 parent=None):
26 """ 27 """
27 Constructor 28 Constructor
28 29
29 @param mode of the dialog (integer) 30 @param mode of the dialog (integer)
30 @param tagsList list of tags (list of strings) 31 @param tagsList list of tags (list of strings)
91 92
92 @pyqtSlot(str) 93 @pyqtSlot(str)
93 def on_nameCombo_activated(self, txt): 94 def on_nameCombo_activated(self, txt):
94 """ 95 """
95 Private slot to handle changes of the selected bookmark name. 96 Private slot to handle changes of the selected bookmark name.
97
98 @param txt selected combo entry (string)
96 """ 99 """
97 self.__updateOK() 100 self.__updateOK()
98 self.__updateBookmarksCombo() 101 self.__updateBookmarksCombo()
99 102
100 @pyqtSlot(str) 103 @pyqtSlot(str)

eric ide

mercurial