From 52462dc08727e92535635397f5530a6f70c7166d Mon Sep 17 00:00:00 2001 From: Pavel Kovalenko Date: Thu, 30 Oct 2014 20:41:05 +0400 Subject: [PATCH] Fix incorrect virtual method overriding. --- src/editors/xrWeatherEditor/property_float_enum_value.cpp | 2 +- src/editors/xrWeatherEditor/property_float_enum_value.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/editors/xrWeatherEditor/property_float_enum_value.cpp b/src/editors/xrWeatherEditor/property_float_enum_value.cpp index c53fcf75a3d..3e9eb49111e 100644 --- a/src/editors/xrWeatherEditor/property_float_enum_value.cpp +++ b/src/editors/xrWeatherEditor/property_float_enum_value.cpp @@ -56,6 +56,6 @@ void property_float_enum_value::SetValue (Object ^object) inherited::SetValue (safe_cast(m_collection[0])->first); } -void property_float_enum_value::increment (float const% increment) +void property_float_enum_value::Increment (float increment) { } \ No newline at end of file diff --git a/src/editors/xrWeatherEditor/property_float_enum_value.hpp b/src/editors/xrWeatherEditor/property_float_enum_value.hpp index 039730c542a..4cf79f11c0b 100644 --- a/src/editors/xrWeatherEditor/property_float_enum_value.hpp +++ b/src/editors/xrWeatherEditor/property_float_enum_value.hpp @@ -32,7 +32,7 @@ public ref class property_float_enum_value : public property_float { ); virtual Object ^GetValue () override; virtual void SetValue (Object ^object) override; - virtual void increment (float const% increment) override; + virtual void Increment (float increment) override; public: collection_type^m_collection;