| 2289 | } |
| 2290 | |
| 2291 | void MainWindow::hideInformation() { |
| 2292 | int version = getVersion(mUI->mLabelInformation->text()); |
| 2293 | mSettings->setValue(SETTINGS_CHECK_VERSION, version); |
| 2294 | mUI->mLabelInformation->setVisible(false); |
| 2295 | mUI->mButtonHideInformation->setVisible(false); |
| 2296 | mUI->mLayoutInformation->deleteLater(); |
| 2297 | } |
| 2298 | |
| 2299 | bool MainWindow::isCppcheckPremium() const { |
| 2300 | return mCppcheckCfgProductName.startsWith("Cppcheck Premium "); |
nothing calls this directly
no test coverage detected