| 896 | bool isEditorOnly() const { return mFlags.test( EditorOnly ); } |
| 897 | bool isNameChangeAllowed() const { return !mFlags.test( NoNameChange ); } |
| 898 | bool isAutoDeleted() const { return mFlags.test( AutoDelete ); } |
| 899 | void setSelected(bool sel); |
| 900 | void setExpanded(bool exp) { if(exp) mFlags.set(Expanded); else mFlags.clear(Expanded); } |
| 901 | void setModDynamicFields(bool dyn) { if(dyn) mFlags.set(ModDynamicFields); else mFlags.clear(ModDynamicFields); } |
no test coverage detected