From 4aa1c270949f7bfb7478a24ce869d10a343c8c27 Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Thu, 6 Oct 2005 23:02:40 +0000 Subject: [PATCH] Compile fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35815 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/motif/checkbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/motif/checkbox.cpp b/src/motif/checkbox.cpp index 9b35bfe850..9a274cc63a 100644 --- a/src/motif/checkbox.cpp +++ b/src/motif/checkbox.cpp @@ -182,7 +182,7 @@ void wxCheckBox::DoSet3StateValue(wxCheckBoxState state) NULL ); #else XmToggleButtonSetState ((Widget) m_mainWidget, - (Boolean) state == wxCHK_CHECKED, True); + state == wxCHK_CHECKED, True); #endif m_inSetValue = false; -- 2.45.2