]> git.saurik.com Git - wxWidgets.git/commitdiff
error if a radiobox is horizontal:(change wxRA_VERTICAL to wxRA_HORIZONTAL)
authorMart Raudsepp <leio@gentoo.org>
Thu, 8 Oct 1998 12:05:19 +0000 (12:05 +0000)
committerMart Raudsepp <leio@gentoo.org>
Thu, 8 Oct 1998 12:05:19 +0000 (12:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/radiobox.cpp

index 82ecdf8600a64745116b59f0f39ae4c69cca81fc..4808659652374b603f3e5bdbac517b0e07265edc 100644 (file)
@@ -435,7 +435,7 @@ void wxRadioBox::SetSize(int x, int y, int width, int height, int sizeFlags)
 
     int nbHor,nbVer;
 
-    if (m_windowStyle & wxRA_VERTICAL)
+    if (m_windowStyle & wxRA_HORIZONTAL)
     {
       nbVer = m_majorDim ;
       nbHor = (m_noItems+m_majorDim-1)/m_majorDim ;
@@ -509,7 +509,7 @@ void wxRadioBox::SetSize(int x, int y, int width, int height, int sizeFlags)
     }
 
     MoveWindow((HWND) m_radioButtons[i],x_offset,y_offset,eachWidth,eachHeight,TRUE);
-    if (m_windowStyle & wxRA_VERTICAL)
+    if (m_windowStyle & wxRA_HORIZONTAL)
     {
       y_offset += maxHeight;
       if (m_radioWidth[0]>0)