188 ignore count (integer)) |
188 ignore count (integer)) |
189 """ |
189 """ |
190 if index.isValid(): |
190 if index.isValid(): |
191 row = index.row() |
191 row = index.row() |
192 index1 = self.createIndex(row, 0, self.watchpoints[row]) |
192 index1 = self.createIndex(row, 0, self.watchpoints[row]) |
193 index2 = self.createIndex(row, len(self.watchpoints[row]), |
193 index2 = self.createIndex( |
194 self.watchpoints[row]) |
194 row, len(self.watchpoints[row]), self.watchpoints[row]) |
195 self.dataAboutToBeChanged.emit(index1, index2) |
195 self.dataAboutToBeChanged.emit(index1, index2) |
196 i = 0 |
196 i = 0 |
197 for value in [cond, special] + list(properties): |
197 for value in [cond, special] + list(properties): |
198 self.watchpoints[row][i] = value |
198 self.watchpoints[row][i] = value |
199 i += 1 |
199 i += 1 |