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

Projucer: Fixed a bug where the C++ language standard project settings wasn't being recalled correctly

This commit is contained in:
ed 2017-07-20 14:08:59 +01:00
parent bfc5708521
commit bde34cebcb

View file

@ -152,7 +152,7 @@ void Project::setMissingDefaultValues()
if (shouldIncludeBinaryInAppConfig() == var())
shouldIncludeBinaryInAppConfig() = true;
if (! projectRoot.hasType (Ids::cppLanguageStandard))
if (! projectRoot.hasProperty (Ids::cppLanguageStandard))
getCppStandardValue() = "11";
ProjucerApplication::getApp().updateNewlyOpenedProject (*this);