Debugger/WatchPointModel.py

changeset 3021
801289962f4e
parent 2988
f53c03574697
child 3032
927a2f8b3669
child 3058
0a02c433f52d
equal deleted inserted replaced
3020:542e97d4ecb3 3021:801289962f4e
186 ignore count (integer)) 186 ignore count (integer))
187 """ 187 """
188 if index.isValid(): 188 if index.isValid():
189 row = index.row() 189 row = index.row()
190 index1 = self.createIndex(row, 0, self.watchpoints[row]) 190 index1 = self.createIndex(row, 0, self.watchpoints[row])
191 index2 = self.createIndex(row, len(self.watchpoints[row]), 191 index2 = self.createIndex(
192 self.watchpoints[row]) 192 row, len(self.watchpoints[row]), self.watchpoints[row])
193 self.dataAboutToBeChanged.emit(index1, index2) 193 self.dataAboutToBeChanged.emit(index1, index2)
194 i = 0 194 i = 0
195 for value in [cond, special] + list(properties): 195 for value in [cond, special] + list(properties):
196 self.watchpoints[row][i] = value 196 self.watchpoints[row][i] = value
197 i += 1 197 i += 1

eric ide

mercurial