From: Brian Macy Date: Tue, 11 May 1999 21:09:44 +0000 (+0000) Subject: Fixed incorrect return type X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a9ac0bea5be080bb7acedff357a747263f08cdfc Fixed incorrect return type git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/gaugemsw.cpp b/src/msw/gaugemsw.cpp index 4a82b4f896..97fc9b7cfb 100644 --- a/src/msw/gaugemsw.cpp +++ b/src/msw/gaugemsw.cpp @@ -228,7 +228,7 @@ bool wxGaugeMSW::SetForegroundColour(const wxColour& col) return TRUE; } -void wxGaugeMSW::SetBackgroundColour(const wxColour& col) +bool wxGaugeMSW::SetBackgroundColour(const wxColour& col) { if ( !wxControl::SetBackgroundColour(col) ) return FALSE;