* @brief Updates the project title and emits titleChanged. */
| 2165 | * @brief Updates the project title and emits titleChanged. |
| 2166 | */ |
| 2167 | void DataModel::ProjectModel::setTitle(const QString& title) |
| 2168 | { |
| 2169 | if (m_title != title) { |
| 2170 | m_title = title; |
| 2171 | setModified(true); |
| 2172 | Q_EMIT titleChanged(); |
| 2173 | } |
| 2174 | } |
| 2175 | |
| 2176 | /** |
| 2177 | * @brief Returns the project setup()/loop() control script source. |
no outgoing calls
no test coverage detected