From 09afb3b1c678430649306706e18aa4c1cd76c80e Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 30 Oct 2015 09:30:55 +0000 Subject: [PATCH] Introjucer: fixed a VC warning --- .../jucer_ProjectExport_XCode.h | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h index 955680c601..9dea2d7f36 100644 --- a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h +++ b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h @@ -1416,8 +1416,8 @@ private: const char* extent; const char* scale; const char* filename; - const int width; - const int height; + int width; + int height; }; static Array getiOSLaunchImageTypes() @@ -1567,16 +1567,9 @@ private: void initialiseDependencyPathValues() { - vst2Path.referTo (Value (new DependencyPathValueSource (getSetting (Ids::vstFolder), - Ids::vst2Path, TargetOS::osx))); - - vst3Path.referTo (Value (new DependencyPathValueSource (getSetting (Ids::vst3Folder), - Ids::vst3Path, TargetOS::osx))); - - aaxPath.referTo (Value (new DependencyPathValueSource (getSetting (Ids::aaxFolder), - Ids::aaxPath, TargetOS::osx))); - - rtasPath.referTo (Value (new DependencyPathValueSource (getSetting (Ids::rtasFolder), - Ids::rtasPath, TargetOS::osx))); + vst2Path.referTo (Value (new DependencyPathValueSource (getSetting (Ids::vstFolder), Ids::vst2Path, TargetOS::osx))); + vst3Path.referTo (Value (new DependencyPathValueSource (getSetting (Ids::vst3Folder), Ids::vst3Path, TargetOS::osx))); + aaxPath. referTo (Value (new DependencyPathValueSource (getSetting (Ids::aaxFolder), Ids::aaxPath, TargetOS::osx))); + rtasPath.referTo (Value (new DependencyPathValueSource (getSetting (Ids::rtasFolder), Ids::rtasPath, TargetOS::osx))); } };