1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Introjucer: stopped the modules panel from hammering the website.

This commit is contained in:
jules 2013-10-05 19:14:03 +01:00
parent 0ff1e14b8b
commit c6becf2532
3 changed files with 24 additions and 2 deletions

View file

@ -52,7 +52,14 @@ ModuleList::ModuleList()
ModuleList::ModuleList (const ModuleList& other)
{
operator= (other);
}
ModuleList& ModuleList::operator= (const ModuleList& other)
{
modules.clear();
modules.addCopiesOf (other.modules);
return *this;
}
const ModuleDescription* ModuleList::getModuleWithID (const String& moduleID) const