]> git.saurik.com Git - wxWidgets.git/commitdiff
redraws added when value changes
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 31 Dec 2001 16:34:25 +0000 (16:34 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 31 Dec 2001 16:34:25 +0000 (16:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13278 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/checkbox.cpp
src/mac/carbon/radiobut.cpp
src/mac/checkbox.cpp
src/mac/radiobut.cpp

index e17deb180db32ad7ff1995b0a545aae4806eabe0..d6d532e5388f85f7f4e91389c9b04cc0567bd78f 100644 (file)
@@ -47,6 +47,7 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
 void wxCheckBox::SetValue(bool val)
 {
    ::SetControlValue( m_macControl , val ) ;
+   MacRedrawControl() ;
 }
 
 bool wxCheckBox::GetValue() const
index a0a8885b16058de4359b3d1d636236554330874f..6421f605969c2dc50fff812abfa1696abc131529 100644 (file)
@@ -84,6 +84,7 @@ void wxRadioButton::SetValue(bool val)
                                }
                        }
                }
+   MacRedrawControl() ;
 }
 
 bool wxRadioButton::GetValue() const
index e17deb180db32ad7ff1995b0a545aae4806eabe0..d6d532e5388f85f7f4e91389c9b04cc0567bd78f 100644 (file)
@@ -47,6 +47,7 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
 void wxCheckBox::SetValue(bool val)
 {
    ::SetControlValue( m_macControl , val ) ;
+   MacRedrawControl() ;
 }
 
 bool wxCheckBox::GetValue() const
index a0a8885b16058de4359b3d1d636236554330874f..6421f605969c2dc50fff812abfa1696abc131529 100644 (file)
@@ -84,6 +84,7 @@ void wxRadioButton::SetValue(bool val)
                                }
                        }
                }
+   MacRedrawControl() ;
 }
 
 bool wxRadioButton::GetValue() const