| 416 | } |
| 417 | |
| 418 | void openDebugLogfile() |
| 419 | { |
| 420 | boost::filesystem::path pathDebug = GetDataDir() / "debug.log"; |
| 421 | |
| 422 | /* Open debug.log with the associated application */ |
| 423 | if (boost::filesystem::exists(pathDebug)) |
| 424 | QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug))); |
| 425 | } |
| 426 | |
| 427 | void openConfigfile() |
| 428 | { |
no test coverage detected