| 433 | |
| 434 | bool Backend::syncPlaytime() const { return m_syncPlaytime; } |
| 435 | void Backend::setSyncPlaytime(bool enabled) |
| 436 | { |
| 437 | if (m_syncPlaytime == enabled) return; |
| 438 | m_syncPlaytime = enabled; |
| 439 | saveConfig(); |
| 440 | } |
| 441 | |
| 442 | QVariantList Backend::getManagedApps() |
| 443 | { |
nothing calls this directly
no outgoing calls
no test coverage detected