X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..34a34b020f1c8defacb299a0fa5c480fa65b8597:/include/wx/cocoa/NSView.h

diff --git a/include/wx/cocoa/NSView.h b/include/wx/cocoa/NSView.h
index 2eef181fcf..50a583c5d2 100644
--- a/include/wx/cocoa/NSView.h
+++ b/include/wx/cocoa/NSView.h
@@ -6,7 +6,7 @@
 // Created:     2003/02/15
 // RCS-ID:      $Id: 
 // Copyright:   (c) 2003 David Elliott
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_NSVIEW_H__
@@ -16,6 +16,7 @@
 #include "wx/cocoa/ObjcAssociate.h"
 
 typedef struct _NSRect NSRect;
+class wxWindow;
 
 WX_DECLARE_OBJC_HASHMAP(NSView);
 class wxCocoaNSView
@@ -28,6 +29,8 @@ public:
 protected:
     static void *sm_cocoaObserver;
 public:
+    virtual wxWindow* GetWxWindow() const
+    {	return NULL;	}
     virtual void Cocoa_FrameChanged(void) = 0;
     virtual bool Cocoa_drawRect(const NSRect &rect)
     {   return false; }
@@ -55,6 +58,8 @@ public:
     {   return false; }
     virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent)
     {   return false; }
+    virtual bool Cocoa_resetCursorRects()
+    {	return false; }
 };
 
 #endif // _WX_COCOA_NSVIEW_H_