| 1433 | } |
| 1434 | |
| 1435 | void MainWindow::openDoc() |
| 1436 | { |
| 1437 | QDir dir(GetAppDataDir()); |
| 1438 | AppConfig &app = AppConfig::Instance(); |
| 1439 | int lan = app.frameOptions.language; |
| 1440 | QDesktopServices::openUrl( |
| 1441 | QUrl("file:///" + dir.absolutePath() + "/ug" + QString::number(lan) + ".pdf")); |
| 1442 | } |
| 1443 | |
| 1444 | void MainWindow::update_capture() |
| 1445 | { |
no test coverage detected