Fixed missing semicolon

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2003-12-28 09:44:34 +00:00
parent a96b4743ff
commit d35dec9b11

View File

@ -213,7 +213,7 @@ bool wxColour::operator == ( const wxColour& col ) const
return (own->red == other->red)
&& (own->green == other->green)
&& (own->blue == other->blue)
&& (own->blue == other->blue) ;
}