| 408 | |
| 409 | bool Backend::notificationsEnabled() const { return m_notificationsEnabled; } |
| 410 | void Backend::setNotificationsEnabled(bool enabled) |
| 411 | { |
| 412 | if (m_notificationsEnabled == enabled) return; |
| 413 | m_notificationsEnabled = enabled; |
| 414 | saveConfig(); |
| 415 | } |
| 416 | |
| 417 | bool Backend::statsSyncEnabled() const { return m_statsSyncEnabled; } |
| 418 | void Backend::setStatsSyncEnabled(bool enabled) |
nothing calls this directly
no outgoing calls
no test coverage detected