19 Class implementing the Breakpoint viewer widget. |
19 Class implementing the Breakpoint viewer widget. |
20 |
20 |
21 Breakpoints will be shown with all their details. They can be modified through |
21 Breakpoints will be shown with all their details. They can be modified through |
22 the context menu of this widget. |
22 the context menu of this widget. |
23 |
23 |
24 @signal sourceFile(string, int) emitted to show the source of a breakpoint |
24 @signal sourceFile(str, int) emitted to show the source of a breakpoint |
25 """ |
25 """ |
26 sourceFile = pyqtSignal(str, int) |
26 sourceFile = pyqtSignal(str, int) |
27 |
27 |
28 def __init__(self, parent = None): |
28 def __init__(self, parent = None): |
29 """ |
29 """ |