compilation fix for wxUSE_CONSTRAINTS==0

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2003-01-14 19:40:55 +00:00
parent 0cd0d9a5ae
commit 0b481c72b6
2 changed files with 8 additions and 0 deletions

View File

@ -117,11 +117,15 @@ public:
// base class virtuals // base class virtuals
// ------------------- // -------------------
virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
virtual bool MSWOnScroll(int orientation, WXWORD nSBCode, virtual bool MSWOnScroll(int orientation, WXWORD nSBCode,
WXWORD pos, WXHWND control); WXWORD pos, WXHWND control);
#if wxUSE_CONSTRAINTS
virtual void SetConstraintSizes(bool recurse = TRUE); virtual void SetConstraintSizes(bool recurse = TRUE);
virtual bool DoPhase(int nPhase); virtual bool DoPhase(int nPhase);
#endif // wxUSE_CONSTRAINTS
protected: protected:
// common part of all ctors // common part of all ctors

View File

@ -603,6 +603,8 @@ void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event)
// wxNotebook base class virtuals // wxNotebook base class virtuals
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#if wxUSE_CONSTRAINTS
// override these 2 functions to do nothing: everything is done in OnSize // override these 2 functions to do nothing: everything is done in OnSize
void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse)) void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse))
@ -616,6 +618,8 @@ bool wxNotebook::DoPhase(int WXUNUSED(nPhase))
return TRUE; return TRUE;
} }
#endif // wxUSE_CONSTRAINTS
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxNotebook Windows message handlers // wxNotebook Windows message handlers
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------