diff --git a/src/editors/xrWeatherEditor/AssemblyInfo.cpp b/src/editors/xrWeatherEditor/AssemblyInfo.cpp index da34cb7fb1f..9b5de41ffe9 100644 --- a/src/editors/xrWeatherEditor/AssemblyInfo.cpp +++ b/src/editors/xrWeatherEditor/AssemblyInfo.cpp @@ -35,5 +35,3 @@ using namespace System::Security::Permissions; [assembly:ComVisible(false)]; [assembly:System::CLSCompliantAttribute(true)]; - -[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)]; diff --git a/src/editors/xrWeatherEditor/pch.hpp b/src/editors/xrWeatherEditor/pch.hpp index 4a7e1d98786..569b0e3bbcf 100644 --- a/src/editors/xrWeatherEditor/pch.hpp +++ b/src/editors/xrWeatherEditor/pch.hpp @@ -12,6 +12,7 @@ #include "Common/Platform.hpp" #include "Common/Common.hpp" #include "xrCommon/inlining_macros.h" +#include "xrCore/xrstring.h" #pragma managed(pop) #ifdef DEBUG diff --git a/src/editors/xrWeatherEditor/property_float_enum_value_reference.cpp b/src/editors/xrWeatherEditor/property_float_enum_value_reference.cpp index 0d8bac246e2..1178c07509d 100644 --- a/src/editors/xrWeatherEditor/property_float_enum_value_reference.cpp +++ b/src/editors/xrWeatherEditor/property_float_enum_value_reference.cpp @@ -54,4 +54,4 @@ void property_float_enum_value_reference::SetValue(Object ^ object) inherited::SetValue(safe_cast(m_collection[0])->first); } -void property_float_enum_value_reference::Increment(float const % increment) {} +void property_float_enum_value_reference::Increment(float value) {} diff --git a/src/editors/xrWeatherEditor/property_float_enum_value_reference.hpp b/src/editors/xrWeatherEditor/property_float_enum_value_reference.hpp index 408bb84a66c..c68f991a3bd 100644 --- a/src/editors/xrWeatherEditor/property_float_enum_value_reference.hpp +++ b/src/editors/xrWeatherEditor/property_float_enum_value_reference.hpp @@ -29,7 +29,7 @@ ref class property_float_enum_value_reference : public property_float_reference property_float_enum_value_reference(float& value, pair* values, u32 const& value_count); virtual Object ^ GetValue() override; virtual void SetValue(Object ^ object) override; - virtual void Increment(float const % increment) override; + virtual void Increment(float value) override; public: collection_type ^ m_collection;