X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/264c023f3e9a594982078b371544f7fc8aaa28af..3c70014d966bbfa08d201ca24c825f2d88cc3975:/src/cocoa/notebook.mm?ds=sidebyside diff --git a/src/cocoa/notebook.mm b/src/cocoa/notebook.mm index 5df800e872..12863c1b90 100644 --- a/src/cocoa/notebook.mm +++ b/src/cocoa/notebook.mm @@ -6,14 +6,17 @@ // Created: 2004/04/08 // RCS-ID: $Id$ // Copyright: (c) 2004 David Elliott -// Licence: wxWindows licence +// Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" + +#if wxUSE_NOTEBOOK + #ifndef WX_PRECOMP #include "wx/app.h" - #include "wx/notebook.h" #endif //WX_PRECOMP +#include "wx/notebook.h" #include "wx/imaglist.h" #include "wx/cocoa/autorelease.h" @@ -177,7 +180,7 @@ wxNotebookPage *wxNotebook::DoRemovePage(size_t nPage) [tvitem retain]; [GetNSTabView() removeTabViewItem:tvitem]; // Remove the child window as a notebook page - wxASSERT([tvitem view] == page->GetNSViewForSuperview()); + wxASSERT(static_cast([tvitem view]) == page->GetNSViewForSuperview()); [tvitem setView:nil]; [tvitem release]; // Make it back into a normal child window @@ -289,3 +292,4 @@ bool wxNotebook::CocoaDelegate_tabView_shouldSelectTabViewItem(WX_NSTabViewItem return !GetEventHandler()->ProcessEvent(event) || event.IsAllowed(); } +#endif // wxUSE_NOTEBOOK