put #if wxUSE_STATBOX around wxStaticBox usage (bug 1568939)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-10-20 14:33:49 +00:00
parent 0b1cc7bffb
commit 3febc967a9

View File

@@ -1539,9 +1539,13 @@ void wxWindowMSW::Update()
// drag and drop
// ---------------------------------------------------------------------------
#if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__)
#if wxUSE_STATBOX
// we need to lower the sibling static boxes so controls contained within can be
// a drop target
static inline void AdjustStaticBoxZOrder(wxWindow *parent)
static void AdjustStaticBoxZOrder(wxWindow *parent)
{
// no sibling static boxes if we have no parent (ie TLW)
if ( !parent )
@@ -1560,6 +1564,16 @@ static inline void AdjustStaticBoxZOrder(wxWindow *parent)
}
}
#else // !wxUSE_STATBOX
static inline void AdjustStaticBoxZOrder(wxWindow * WXUNUSED(parent))
{
}
#endif // wxUSE_STATBOX/!wxUSE_STATBOX
#endif // drag and drop is used
#if wxUSE_DRAG_AND_DROP
void wxWindowMSW::SetDropTarget(wxDropTarget *pDropTarget)
{