! mark buffer as modified or unmodified */
| 330 | |
| 331 | /*! mark buffer as modified or unmodified */ |
| 332 | __forceinline void setModified() { |
| 333 | modCounter++; |
| 334 | modified = true; |
| 335 | if (buffer) buffer->setNeedsCommit(); |
| 336 | } |
| 337 | |
| 338 | /*! mark buffer as modified or unmodified */ |
| 339 | __forceinline bool isModified(unsigned int otherModCounter) const { |
no test coverage detected