| 42 | } |
| 43 | |
| 44 | void UpdateStatusWidget::showUpdateAvailable(const QString &version) |
| 45 | { |
| 46 | m_versionLabel->setText(tr("New version: v%1").arg(version)); |
| 47 | m_versionLabel->setVisible(true); |
| 48 | m_updateButton->setVisible(true); |
| 49 | m_updateButton->setToolTip(tr("Check update information")); |
| 50 | } |
| 51 | |
| 52 | void UpdateStatusWidget::hideUpdateInfo() |
| 53 | { |
no test coverage detected