* \brief Set "fixed" property which defines whether the object can be renamed, deleted, etc. */
| 276 | * \brief Set "fixed" property which defines whether the object can be renamed, deleted, etc. |
| 277 | */ |
| 278 | void AbstractAspect::setFixed(bool value) { |
| 279 | if (value == d->m_fixed) |
| 280 | return; |
| 281 | d->m_fixed = value; |
| 282 | } |
| 283 | |
| 284 | bool AbstractAspect::isFixed() const { |
| 285 | return d->m_fixed; |
no outgoing calls
no test coverage detected