From: Stefan Neis Date: Fri, 3 Oct 2003 17:01:06 +0000 (+0000) Subject: Fixed typo. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d00110f640da341d70090a75968e03643a3a9647?ds=inline Fixed typo. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24071 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/os2/button.cpp b/src/os2/button.cpp index 397ee99eda..c47b6dce32 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);