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

Introjucer: avoided some MSVC warnings.

This commit is contained in:
jules 2013-09-16 18:12:27 +01:00
parent ef058dc285
commit 3ab3c79589
2 changed files with 8 additions and 0 deletions

View file

@ -794,6 +794,11 @@ EnabledModuleList::EnabledModuleList (Project& p, const ValueTree& s)
{
}
EnabledModuleList::EnabledModuleList (const EnabledModuleList& other)
: project (other.project), state (other.state)
{
}
const Identifier EnabledModuleList::modulesGroupTag ("MODULES");
const Identifier EnabledModuleList::moduleTag ("MODULE");

View file

@ -153,6 +153,7 @@ class EnabledModuleList
{
public:
EnabledModuleList (Project&, const ValueTree&);
EnabledModuleList (const EnabledModuleList&);
bool isModuleEnabled (const String& moduleID) const;
Value shouldShowAllModuleFilesInProject (const String& moduleID);
@ -175,6 +176,8 @@ private:
ValueTree state;
UndoManager* getUndoManager() const { return project.getUndoManagerFor (state); }
EnabledModuleList& operator= (const EnabledModuleList&) JUCE_DELETED_FUNCTION;
};