]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/notebook.mm
-start experimental use of RunApplicationEventLoop,
[wxWidgets.git] / src / cocoa / notebook.mm
index 3518e49a500278da28787a45d897eb26a4b83e2b..c77473f95afdfc175b791d0876bcbc48969c5a99 100644 (file)
@@ -10,6 +10,9 @@
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
+
+#if wxUSE_NOTEBOOK
+
 #ifndef WX_PRECOMP
     #include "wx/app.h"
     #include "wx/notebook.h"
@@ -260,6 +263,7 @@ bool wxNotebook::SetPageImage(size_t nPage, int nImage)
 
 int wxNotebook::SetSelection(size_t nPage)
 {
+    wxAutoNSAutoreleasePool pool;
     [GetNSTabView() selectTabViewItemAtIndex:nPage];
     return GetSelection();
 }
@@ -288,3 +292,4 @@ bool wxNotebook::CocoaDelegate_tabView_shouldSelectTabViewItem(WX_NSTabViewItem
     return !GetEventHandler()->ProcessEvent(event) || event.IsAllowed();
 }
 
+#endif // wxUSE_NOTEBOOK