Debugger/EditBreakpointDialog.py

changeset 2953
703452a2876f
parent 2302
f29e9405c851
child 2988
f53c03574697
equal deleted inserted replaced
2952:94fc661a54a2 2953:703452a2876f
32 @param id id of the breakpoint (tuple) 32 @param id id of the breakpoint (tuple)
33 (filename, linenumber) 33 (filename, linenumber)
34 @param properties properties for the breakpoint (tuple) 34 @param properties properties for the breakpoint (tuple)
35 (condition, temporary flag, enabled flag, ignore count) 35 (condition, temporary flag, enabled flag, ignore count)
36 @param condHistory the list of conditionals history (list of strings) 36 @param condHistory the list of conditionals history (list of strings)
37 @param parent the parent of this dialog 37 @param parent the parent of this dialog (QWidget)
38 @param name the widget name of this dialog 38 @param name the widget name of this dialog (string)
39 @param modal flag indicating a modal dialog 39 @param modal flag indicating a modal dialog (boolean)
40 @param addMode flag indicating the add mode (boolean)
41 @param filenameHistory list of recently used file names
42 (list of strings)
40 """ 43 """
41 super().__init__(parent) 44 super().__init__(parent)
42 self.setupUi(self) 45 self.setupUi(self)
43 if name: 46 if name:
44 self.setObjectName(name) 47 self.setObjectName(name)

eric ide

mercurial