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:
parent
0ff1e14b8b
commit
c6becf2532
3 changed files with 24 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue