| 270 | } |
| 271 | |
| 272 | void Property::touch() |
| 273 | { |
| 274 | PropertyCleaner guard(this); |
| 275 | if (father && isNotifyEnabled()) { |
| 276 | father->onEarlyChange(this); |
| 277 | father->onChanged(this); |
| 278 | } |
| 279 | StatusBits.set(Touched); |
| 280 | } |
| 281 | |
| 282 | void Property::setReadOnly(bool readOnly) |
| 283 | { |
no test coverage detected