mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-13 00:04:19 +00:00
Introjucer: fixed some compiler warnings.
This commit is contained in:
parent
0ba5b01497
commit
b58d5da64d
5 changed files with 7 additions and 7 deletions
|
|
@ -1867,7 +1867,7 @@
|
|||
HEADER_SEARCH_PATHS = "../../JuceLibraryCode ../../../../modules $(inherited)";
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing";
|
||||
OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter";
|
||||
INSTALL_PATH = "$(HOME)/Applications";
|
||||
CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/build/$(CONFIGURATION)";
|
||||
MACOSX_DEPLOYMENT_TARGET_ppc = 10.4;
|
||||
|
|
@ -1888,7 +1888,7 @@
|
|||
HEADER_SEARCH_PATHS = "../../JuceLibraryCode ../../../../modules $(inherited)";
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing";
|
||||
OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter";
|
||||
INSTALL_PATH = "$(HOME)/Applications";
|
||||
CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/build/$(CONFIGURATION)";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.5;
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<EXPORTFORMATS>
|
||||
<XCODE_MAC targetFolder="Builds/MacOSX" vstFolder="~/SDKs/vstsdk2.4" rtasFolder="~/SDKs/PT_80_SDK"
|
||||
documentExtensions=".jucer" objCExtraSuffix="zNNCr" bigIcon="rVgowdy"
|
||||
extraCompilerFlags="-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing">
|
||||
extraCompilerFlags="-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter">
|
||||
<CONFIGURATIONS>
|
||||
<CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="Introjucer"
|
||||
osxSDK="default" osxCompatibility="default" osxArchitecture="default"/>
|
||||
|
|
|
|||
|
|
@ -304,7 +304,7 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
void filesDropped (const StringArray& files, int insertIndex) override
|
||||
void filesDropped (const StringArray& files, int /*insertIndex*/) override
|
||||
{
|
||||
Array<ModuleDescription> modules;
|
||||
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ public:
|
|||
g.fillRect (0, 0, width, height - 1);
|
||||
}
|
||||
|
||||
void paintCell (Graphics& g, int rowNumber, int columnId, int width, int height, bool rowIsSelected) override
|
||||
void paintCell (Graphics& g, int rowNumber, int columnId, int width, int height, bool /*rowIsSelected*/) override
|
||||
{
|
||||
String text;
|
||||
const String moduleID (project.getModules().getModuleID (rowNumber));
|
||||
|
|
|
|||
|
|
@ -173,7 +173,7 @@ public:
|
|||
p->addFiles (files, insertIndex);
|
||||
}
|
||||
|
||||
virtual void moveSelectedItemsTo (OwnedArray <Project::Item>& selectedNodes, int insertIndex)
|
||||
virtual void moveSelectedItemsTo (OwnedArray <Project::Item>&, int /*insertIndex*/)
|
||||
{
|
||||
jassertfalse;
|
||||
}
|
||||
|
|
@ -216,7 +216,7 @@ public:
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
void valueTreePropertyChanged (ValueTree& tree, const Identifier& property) override
|
||||
void valueTreePropertyChanged (ValueTree& tree, const Identifier&) override
|
||||
{
|
||||
if (tree == item.state)
|
||||
repaintItem();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue