* @brief Returns the window title text. */
| 280 | * @brief Returns the window title text. |
| 281 | */ |
| 282 | QString Titlebar::title() const |
| 283 | { |
| 284 | #if defined(Q_OS_WIN) |
| 285 | return m_title + " - Serial Studio"; |
| 286 | #else |
| 287 | // code-verify off |
| 288 | return m_title + " — Serial Studio"; |
| 289 | // code-verify on |
| 290 | #endif |
| 291 | } |
| 292 | |
| 293 | /** |
| 294 | * @brief Returns whether the parent window is currently active. |
no outgoing calls