]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/gauge95.cpp
Changed [] parameters to be unsigned.
[wxWidgets.git] / src / msw / gauge95.cpp
index f0e0bc8932ec7021e7513b3f0bd471e7ec7f5615..e5c09362e280fdd46791e162b5a345356fd22d32 100644 (file)
@@ -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