MCPcopy Create free account
hub / github.com/FreesmTeam/FreesmLauncher / checkQSavePath

Method checkQSavePath

launcher/Application.cpp:1928–1937  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1926}
1927
1928bool Application::checkQSavePath(QString path)
1929{
1930 QMutexLocker locker(&m_qsaveResourcesMutex);
1931 for (auto partialPath : m_qsaveResources.keys()) {
1932 if (path.startsWith(partialPath) && m_qsaveResources.value(partialPath, 0) > 0) {
1933 return true;
1934 }
1935 }
1936 return false;
1937}

Callers 2

executeTaskMethod · 0.80
executeTaskMethod · 0.80

Calls 1

valueMethod · 0.80

Tested by

no test coverage detected