| 665 | } |
| 666 | |
| 667 | void LightscreenWindow::showUploaderError(const QString &error) |
| 668 | { |
| 669 | mLastMessage = -1; |
| 670 | updateStatus(); |
| 671 | |
| 672 | if (mTrayIcon && !error.isEmpty() && settings()->value("options/message").toBool()) { |
| 673 | mTrayIcon->showMessage(tr("Upload error"), error); |
| 674 | } |
| 675 | |
| 676 | notify(Screenshot::Failure); |
| 677 | } |
| 678 | |
| 679 | void LightscreenWindow::showUploaderMessage(const QString &fileName, const QString &url) |
| 680 | { |
nothing calls this directly
no outgoing calls
no test coverage detected