]> git.saurik.com Git - wxWidgets.git/commitdiff
CodeWarrior (8.3 mwcc) thinks that it cannot compare id (a struct objc_object*)
authorDavid Elliott <dfe@tgwbd.org>
Sat, 30 Oct 2004 06:31:07 +0000 (06:31 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Sat, 30 Oct 2004 06:31:07 +0000 (06:31 +0000)
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

src/cocoa/notebook.mm

index 28e0978ef7974844e46933f626829be1f4ac973c..12863c1b90ed177376c7ff93bef83400ed8f28b2 100644 (file)
@@ -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