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

Fixed a typo in the introjucer. C++0x fixes.

This commit is contained in:
Julian Storer 2011-08-22 16:40:37 +01:00
parent ffc2f5d40e
commit d55b7419ec
14 changed files with 83 additions and 43 deletions

View file

@ -232,7 +232,7 @@ private:
public:
MissingDependenciesComponent (Project& project_, ModuleList& moduleList_, const String& moduleID_)
: PropertyComponent ("Dependencies", 100),
project (project_), moduleList (moduleList), moduleID (moduleID_),
project (project_), moduleList (moduleList_), moduleID (moduleID_),
fixButton ("Enable Required Modules")
{
const ModuleList::Module* module = moduleList.findModuleInfo (moduleID);