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 |