1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-05 03:50:07 +00:00

Projucer: Removed analytics

This commit is contained in:
ed 2019-11-25 16:20:51 +00:00
parent 521c250413
commit de23ef7b1f
31 changed files with 32 additions and 1056 deletions

View file

@ -399,7 +399,7 @@ private:
auto mod = project.getModuleWithID (missingModule);
if (mod.second != File())
enabledModules.addModule (mod.second, copyLocally, useGlobalPath, false);
enabledModules.addModule (mod.second, copyLocally, useGlobalPath);
else
missing.add (missingModule);
}
@ -541,8 +541,7 @@ public:
for (int i = 0; i < modules.size(); ++i)
project.getEnabledModules().addModule (modules.getReference(i).moduleFolder,
project.getEnabledModules().areMostModulesCopiedLocally(),
project.getEnabledModules().areMostModulesUsingGlobalPath(),
true);
project.getEnabledModules().areMostModulesUsingGlobalPath());
}
void addSubItems() override