]> git.saurik.com Git - wxWidgets.git/commitdiff
Unused variable removal.
authorWłodzimierz Skiba <abx@abx.art.pl>
Mon, 29 May 2006 13:07:27 +0000 (13:07 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Mon, 29 May 2006 13:07:27 +0000 (13:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39437 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/combocmn.cpp

index 356689bf702ef0120c66fdbfca0fa301aaf746bc..a614127e2a9e90769151f19f2083f712f9ee4c3b 100644 (file)
@@ -795,7 +795,6 @@ void wxComboCtrlBase::CalculateAreas( int btnWidth )
 {
     wxSize sz = GetClientSize();
     int customBorder = m_widthCustomBorder;
-    bool buttonOutside;
     int btnBorder; // border for button only
 
     // check if button should really be outside the border: we'll do it it if
@@ -806,13 +805,11 @@ void wxComboCtrlBase::CalculateAreas( int btnWidth )
          m_btnSpacingX == 0 &&
          m_btnHei == 0 )
     {
-        buttonOutside = true;
         m_iFlags |= wxCC_IFLAG_BUTTON_OUTSIDE;
         btnBorder = 0;
     }
     else
     {
-        buttonOutside = false;
         m_iFlags &= ~(wxCC_IFLAG_BUTTON_OUTSIDE);
         btnBorder = customBorder;
     }