| 243 | } |
| 244 | |
| 245 | void AbstractAspect::setComment(const QString& value) { |
| 246 | if (value == d->m_comment) |
| 247 | return; |
| 248 | exec(new PropertyChangeCommand<QString>(i18n("%1: change comment", d->m_name), &d->m_comment, value), |
| 249 | "aspectDescriptionAboutToChange", |
| 250 | "aspectDescriptionChanged", |
| 251 | QArgument<const AbstractAspect*>("const AbstractAspect*", this)); |
| 252 | } |
| 253 | |
| 254 | void AbstractAspect::setCreationTime(const QDateTime& time) { |
| 255 | d->m_creation_time = time; |
no outgoing calls
no test coverage detected