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

Corrected some spelling mistakes in comments

This commit is contained in:
jules 2016-04-11 11:13:44 +01:00
parent 7d178feb0c
commit fb864a5cb1
38 changed files with 49 additions and 48 deletions

View file

@ -113,7 +113,7 @@ struct DiagnosticReceiver
struct DiagnosticList
{
// after some research, it seems that notes never come on their own
// i.e. they always have a warning / error preceeding them
// i.e. they always have a warning / error preceding them
// so we can use this to keep notes and their associated notes together
// by keeping track of the last message
DiagnosticMessage lastMessage;

View file

@ -903,7 +903,7 @@ protected:
addFile (path, parent,
projectItem.shouldBeAddedToBinaryResources()
|| (shouldFileBeCompiledByDefault (path) && ! projectItem.shouldBeCompiled()),
shouldFileBeCompiledByDefault (path) && (bool) projectItem.shouldUseStdCall());
shouldFileBeCompiledByDefault (path) && projectItem.shouldUseStdCall());
}
}

View file

@ -691,6 +691,7 @@ Project::Item Project::Item::findItemWithID (const String& targetId) const
for (int i = getNumChildren(); --i >= 0;)
{
Item found (getChild(i).findItemWithID (targetId));
if (found.isValid())
return found;
}
@ -735,7 +736,7 @@ String Project::Item::getFilePath() const
if (isFile())
return state [Ids::file].toString();
return String::empty;
return String();
}
File Project::Item::getFile() const
@ -1060,8 +1061,8 @@ ValueTree Project::getConfigNode()
return projectRoot.getOrCreateChildWithName (Ids::JUCEOPTIONS, nullptr);
}
const char* const Project::configFlagDefault = "default";
const char* const Project::configFlagEnabled = "enabled";
const char* const Project::configFlagDefault = "default";
const char* const Project::configFlagEnabled = "enabled";
const char* const Project::configFlagDisabled = "disabled";
Value Project::getConfigFlag (const String& name)
@ -1114,7 +1115,7 @@ String Project::getAUMainTypeString()
{
if (getPluginIsSynth().getValue()) s = "kAudioUnitType_MusicDevice";
else if (getPluginWantsMidiInput().getValue()) s = "kAudioUnitType_MusicEffect";
else s = "kAudioUnitType_Effect";
else s = "kAudioUnitType_Effect";
}
return s;
@ -1129,7 +1130,7 @@ String Project::getAUMainTypeCode()
if (getPluginIsMidiEffectPlugin().getValue()) s = "aumi";
else if (getPluginIsSynth().getValue()) s = "aumu";
else if (getPluginWantsMidiInput().getValue()) s = "aumf";
else s = "aufx";
else s = "aufx";
}
return s;
@ -1141,7 +1142,7 @@ String Project::getPluginVSTCategoryString()
if (s.isEmpty())
s = static_cast<bool> (getPluginIsSynth().getValue()) ? "kPlugCategSynth"
: "kPlugCategEffect";
: "kPlugCategEffect";
return s;
}