X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/04a65123066ad12076f42d6ef259eae378e73761..a2b0fa12c9cb341acce346c0e7794e099363cd01:/src/msw/gauge95.cpp diff --git a/src/msw/gauge95.cpp b/src/msw/gauge95.cpp index f0e0bc8932..e5c09362e2 100644 --- a/src/msw/gauge95.cpp +++ b/src/msw/gauge95.cpp @@ -182,14 +182,24 @@ int wxGauge95::GetValue(void) const return m_gaugePos; } -void wxGauge95::SetForegroundColour(const wxColour& col) +bool wxGauge95::SetForegroundColour(const wxColour& col) { - m_foregroundColour = col ; + if ( !wxControl::SetForegroundColour(col) ) + return FALSE; + + m_foregroundColour = col ; + + return TRUE; } -void wxGauge95::SetBackgroundColour(const wxColour& col) +bool wxGauge95::SetBackgroundColour(const wxColour& col) { - m_backgroundColour = col ; + if ( !wxControl::SetBackgroundColour(col) ) + return FALSE; + + m_backgroundColour = col ; + + return TRUE; } #endif // wxUSE_GAUGE