| 45 | } |
| 46 | |
| 47 | QString Settings::downloadPath() |
| 48 | { |
| 49 | QString d = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation); |
| 50 | d += QDir::separator() + QApplication::applicationName(); |
| 51 | return QSettings().value("downloadPath", d).toString(); |
| 52 | } |
| 53 | |
| 54 | bool Settings::discoverable() |
| 55 | { |
nothing calls this directly
no outgoing calls
no test coverage detected