Misplaced #ifdef ... #endif fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39044 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2006-05-05 07:10:24 +00:00
parent aa1e6de9b1
commit 6337cacce9

View File

@ -212,8 +212,11 @@ wxRadioBoxBase::DoSetItemToolTip(unsigned int WXUNUSED(item),
// per-item tooltips not implemented by default
}
#endif // wxUSE_TOOLTIPS
wxRadioBoxBase::~wxRadioBoxBase()
{
#if wxUSE_TOOLTIPS
if ( m_itemsTooltips )
{
const size_t n = m_itemsTooltips->size();
@ -222,9 +225,8 @@ wxRadioBoxBase::~wxRadioBoxBase()
delete m_itemsTooltips;
}
}
#endif // wxUSE_TOOLTIPS
}
#if WXWIN_COMPATIBILITY_2_4