| 50 | } |
| 51 | |
| 52 | void |
| 53 | MonitorDataModel::updated( |
| 54 | TreeNode* left, int lcol, |
| 55 | TreeNode* right, int rcol |
| 56 | ) |
| 57 | { |
| 58 | QModelIndex topLeft = this->index( left, lcol); |
| 59 | QModelIndex bottomRight = this->index( right, rcol); |
| 60 | |
| 61 | emit dataChanged( topLeft, bottomRight); |
| 62 | } |
| 63 | |
| 64 | void |
| 65 | MonitorDataModel::updated( TreeNode* node, int column) |