CodeWarrior (8.3 mwcc) thinks that it cannot compare id (a struct objc_object*)
with NSView* for equality. This is of course completely against the Objective-C language specification but we'll fix it anyway. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30183 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -180,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<NSView*>([tvitem view]) == page->GetNSViewForSuperview());
|
||||
[tvitem setView:nil];
|
||||
[tvitem release];
|
||||
// Make it back into a normal child window
|
||||
|
Reference in New Issue
Block a user