From caea5ecdc0843f6c1bd26c6d1eac27e1305f8118 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Fri, 8 Feb 2008 09:12:04 +0000 Subject: [PATCH] Fix tracking rectangles in 64-bit build by remembering the tag as the 64-bit integer that it is in that mode. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@51595 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/cocoa/trackingrectmanager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/cocoa/trackingrectmanager.h b/include/wx/cocoa/trackingrectmanager.h index 40fac51aad..da4483db53 100644 --- a/include/wx/cocoa/trackingrectmanager.h +++ b/include/wx/cocoa/trackingrectmanager.h @@ -32,7 +32,7 @@ public: protected: wxWindow *m_window; bool m_isTrackingRectActive; - int m_trackingRectTag; + NSInteger m_trackingRectTag; NSRect m_trackingRectInWindowCoordinates; private: wxCocoaTrackingRectManager();