| 170 | } |
| 171 | |
| 172 | void TitleBar::setTitle(QString title) |
| 173 | { |
| 174 | if (!_is_native){ |
| 175 | _title->setText(title); |
| 176 | } |
| 177 | else if (_parent != NULL){ |
| 178 | _parent->setWindowTitle(title); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | QString TitleBar::title() |
| 183 | { |
no outgoing calls
no test coverage detected