| 289 | |
| 290 | STD_SETTER_CMD_IMPL_S(Project, SetAuthor, QString, author) |
| 291 | void Project::setAuthor(const QString& author) { |
| 292 | Q_D(Project); |
| 293 | if (author != d->author) |
| 294 | exec(new ProjectSetAuthorCmd(d, author, ki18n("%1: set author"))); |
| 295 | } |
| 296 | |
| 297 | STD_SETTER_CMD_IMPL_S(Project, SetSaveDefaultDockWidgetState, bool, saveDefaultDockWidgetState) |
| 298 | void Project::setSaveDefaultDockWidgetState(bool save) { |