From ab3bb5929728cd2eaef00bfac621afab97025dca Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Fri, 3 Oct 2003 17:01:06 +0000 Subject: [PATCH] Fixed typo. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@24071 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/os2/button.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os2/button.cpp b/src/os2/button.cpp index 4a4f720732..9ad62df37a 100644 --- a/src/os2/button.cpp +++ b/src/os2/button.cpp @@ -311,7 +311,7 @@ void wxButton::SetDefaultStyle( if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON) { if (bOn) - lStyle | BS_DEFAULT; + lStyle |= BS_DEFAULT; else lStyle &= ~BS_DEFAULT; ::WinSetWindowULong(GetHwndOf(pBtn), QWL_STYLE, lStyle);