Fixed incorrect return type

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Brian Macy 1999-05-11 21:09:44 +00:00
parent 5b86bbbda6
commit a9ac0bea5b

View File

@ -228,7 +228,7 @@ bool wxGaugeMSW::SetForegroundColour(const wxColour& col)
return TRUE; return TRUE;
} }
void wxGaugeMSW::SetBackgroundColour(const wxColour& col) bool wxGaugeMSW::SetBackgroundColour(const wxColour& col)
{ {
if ( !wxControl::SetBackgroundColour(col) ) if ( !wxControl::SetBackgroundColour(col) )
return FALSE; return FALSE;