Skip to content

Commit

Permalink
Fix incorrect virtual method overriding.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 30, 2014
1 parent 0c64763 commit 52462dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/editors/xrWeatherEditor/property_float_enum_value.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ void property_float_enum_value::SetValue (Object ^object)
inherited::SetValue (safe_cast<ValuePair^>(m_collection[0])->first);
}

void property_float_enum_value::increment (float const% increment)
void property_float_enum_value::Increment (float increment)
{
}
2 changes: 1 addition & 1 deletion src/editors/xrWeatherEditor/property_float_enum_value.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 52462dc

Please sign in to comment.