Skip to content

Commit

Permalink
Fix incorrect virtual method overriding.
Browse files Browse the repository at this point in the history
Do not confuse with 52462dc
  • Loading branch information
Xottab-DUTY committed Mar 15, 2017
1 parent 8589126 commit 2af4148
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ void property_float_enum_value_reference::SetValue(Object ^ object)
inherited::SetValue(safe_cast<ValuePair ^>(m_collection[0])->first);
}

void property_float_enum_value_reference::increment(float const % increment) {}
void property_float_enum_value_reference::Increment(float const % increment) {}
Original file line number Diff line number Diff line change
Expand Up @@ -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 const % increment) override;

public:
collection_type ^ m_collection;
Expand Down

0 comments on commit 2af4148

Please sign in to comment.