Commit 465e8bbf authored by cutealien's avatar cutealien

Fix missing return value in CGUIButton::ButtonImage::operator=


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4764 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 4e5075d9
...@@ -188,6 +188,7 @@ namespace gui ...@@ -188,6 +188,7 @@ namespace gui
Texture->drop(); Texture->drop();
Texture = other.Texture; Texture = other.Texture;
SourceRect = other.SourceRect; SourceRect = other.SourceRect;
return *this;
} }
bool operator==(const ButtonImage& other) const bool operator==(const ButtonImage& other) const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment