| 950 | } |
| 951 | |
| 952 | void LightscreenWindow::setStatus(QString status) |
| 953 | { |
| 954 | if (status.isEmpty()) { |
| 955 | status = tr("Lightscreen"); |
| 956 | } else { |
| 957 | status += tr(" - Lightscreen"); |
| 958 | } |
| 959 | |
| 960 | if (mTrayIcon) { |
| 961 | mTrayIcon->setToolTip(status); |
| 962 | } |
| 963 | |
| 964 | setWindowTitle(status); |
| 965 | } |
| 966 | |
| 967 | QSettings *LightscreenWindow::settings() const |
| 968 | { |
nothing calls this directly
no outgoing calls
no test coverage detected