MCPcopy Create free account
hub / github.com/Selectively11/CloudRedirect / remoteOnlyAppCount

Method remoteOnlyAppCount

ui-linux/src/backend.cpp:787–794  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

785QString Backend::version() const { return QStringLiteral(CR_VERSION); }
786
787int 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
796QString Backend::readAccessToken() const
797{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected