fixed unused variable warning
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43715 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1004,9 +1004,9 @@ void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust, int textCtrlYAdjust
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
wxSize sz = GetClientSize();
|
wxSize sz = GetClientSize();
|
||||||
int customBorder = m_widthCustomBorder;
|
|
||||||
|
|
||||||
#if !TEXTCTRL_TEXT_CENTERED
|
#if !TEXTCTRL_TEXT_CENTERED
|
||||||
|
int customBorder = m_widthCustomBorder;
|
||||||
if ( (m_text->GetWindowStyleFlag() & wxBORDER_MASK) == wxNO_BORDER )
|
if ( (m_text->GetWindowStyleFlag() & wxBORDER_MASK) == wxNO_BORDER )
|
||||||
{
|
{
|
||||||
// Centre textctrl
|
// Centre textctrl
|
||||||
@@ -1033,10 +1033,10 @@ void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust, int textCtrlYAdjust
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#else
|
#else // TEXTCTRL_TEXT_CENTERED
|
||||||
wxUnusedVar(textCtrlXAdjust);
|
wxUnusedVar(textCtrlXAdjust);
|
||||||
wxUnusedVar(textCtrlYAdjust);
|
wxUnusedVar(textCtrlYAdjust);
|
||||||
#endif
|
#endif // !TEXTCTRL_TEXT_CENTERED/TEXTCTRL_TEXT_CENTERED
|
||||||
{
|
{
|
||||||
// If it has border, have textctrl will the entire text field.
|
// If it has border, have textctrl will the entire text field.
|
||||||
m_text->SetSize( m_tcArea.x + m_widthCustomPaint,
|
m_text->SetSize( m_tcArea.x + m_widthCustomPaint,
|
||||||
|
Reference in New Issue
Block a user