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

Cranked up the Clang warning level in the projucer, and fixed a few minor warnings

This commit is contained in:
jules 2018-01-16 17:15:06 +00:00
parent 4746337ecc
commit 7d24b39f18
12 changed files with 38 additions and 42 deletions

View file

@ -188,7 +188,7 @@ void ProjectContentComponent::setProject (Project* newProject)
}
//==============================================================================
LiveBuildTab* findBuildTab (const TabbedComponent& tabs)
static LiveBuildTab* findBuildTab (const TabbedComponent& tabs)
{
return dynamic_cast<LiveBuildTab*> (tabs.getTabContentComponent (1));
}
@ -742,7 +742,7 @@ struct AsyncCommandRetrier : public Timer
JUCE_DECLARE_NON_COPYABLE (AsyncCommandRetrier)
};
bool reinvokeCommandAfterCancellingModalComps (const ApplicationCommandTarget::InvocationInfo& info)
static bool reinvokeCommandAfterCancellingModalComps (const ApplicationCommandTarget::InvocationInfo& info)
{
if (ModalComponentManager::getInstance()->cancelAllModalComponents())
{