diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/radiobutton.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/radiobutton.cpp b/src/radiobutton.cpp index ac1a5cc..e02abaf 100644 --- a/src/radiobutton.cpp +++ b/src/radiobutton.cpp @@ -57,14 +57,7 @@ void RadioButton::OnPress(Window *owner, W32DLibCallback callback) // void RadioButton::SetState() { - BOOL ret=CheckRadioButton(m_parent->GetHWND(),m_first,m_last,m_resid); - - W32DEBUGOUT("CheckRadioButton(" << m_parent->GetHWND() <<"," << - m_first << "," << - m_last << "," << - m_resid << - ") for " << m_resid << - " returned " << ret); + CheckRadioButton(m_parent->GetHWND(),m_first,m_last,m_resid); } |