| 321 | } |
| 322 | |
| 323 | void Window::setCaption(const UString& _caption) |
| 324 | { |
| 325 | if (mWidgetCaption != nullptr) |
| 326 | mWidgetCaption->setCaption(_caption); |
| 327 | else |
| 328 | Base::setCaption(_caption); |
| 329 | } |
| 330 | |
| 331 | const UString& Window::getCaption() const |
| 332 | { |
no test coverage detected