Debugger/WatchPointModel.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1147
5dc04e6593d7
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
20 """ 20 """
21 Constructor 21 Constructor
22 22
23 @param reference to the parent widget (QObject) 23 @param reference to the parent widget (QObject)
24 """ 24 """
25 QObject.__init__(self, parent) 25 super().__init__(parent)
26 26
27 self.watchpoints = [] 27 self.watchpoints = []
28 self.header = [ 28 self.header = [
29 self.trUtf8("Condition"), 29 self.trUtf8("Condition"),
30 self.trUtf8("Special"), 30 self.trUtf8("Special"),

eric ide

mercurial