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:
parent
ef058dc285
commit
3ab3c79589
2 changed files with 8 additions and 0 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue