diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-04-11 00:14:13 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-04-11 00:14:13 +0000 |
commit | ba60e6f1f7ec109a1214aba3e6c8f2f5b78fc230 (patch) | |
tree | e7ebdb1bcb8dd3d91bc62fabf27b3b1faab7092b | |
parent | 21ad07ec8779e9b52c6f5acb8bf9fe35cef21449 (diff) |
Removed SetState() debug
-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); } |