13 |
13 |
14 |
14 |
15 class WatchPointModel(QAbstractItemModel): |
15 class WatchPointModel(QAbstractItemModel): |
16 """ |
16 """ |
17 Class implementing a custom model for watch expressions. |
17 Class implementing a custom model for watch expressions. |
|
18 |
|
19 @signal dataAboutToBeChanged(QModelIndex, QModelIndex) emitted to indicate |
|
20 a change of the data |
18 """ |
21 """ |
19 dataAboutToBeChanged = pyqtSignal(QModelIndex, QModelIndex) |
22 dataAboutToBeChanged = pyqtSignal(QModelIndex, QModelIndex) |
20 |
23 |
21 def __init__(self, parent=None): |
24 def __init__(self, parent=None): |
22 """ |
25 """ |