| 785 | QString Backend::version() const { return QStringLiteral(CR_VERSION); } |
| 786 | |
| 787 | int Backend::remoteOnlyAppCount() const { |
| 788 | int count = 0; |
| 789 | for (const auto &app : m_apps) { |
| 790 | if (app.isRemote && !app.isLocal && !app.name.contains("Soundtrack", Qt::CaseInsensitive)) |
| 791 | count++; |
| 792 | } |
| 793 | return count; |
| 794 | } |
| 795 | |
| 796 | QString Backend::readAccessToken() const |
| 797 | { |
nothing calls this directly
no outgoing calls
no test coverage detected