| 401 | void Backend::setProviderPath(const QString &path) { m_providerPath = path; emit settingsChanged(); } |
| 402 | QString Backend::syncFolderPath() const { return m_syncFolderPath; } |
| 403 | void Backend::setSyncFolderPath(const QString &path) { |
| 404 | m_syncFolderPath = path; |
| 405 | saveConfig(); |
| 406 | } |
| 407 | bool Backend::providerAuthenticated() const { return m_providerAuthenticated; } |
| 408 | |
| 409 | bool Backend::notificationsEnabled() const { return m_notificationsEnabled; } |
nothing calls this directly
no outgoing calls
no test coverage detected