From: David Elliott Date: Fri, 8 Feb 2008 09:12:04 +0000 (+0000) Subject: Fix tracking rectangles in 64-bit build by remembering the tag as the 64-bit integer... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/29fbbf8967e4c4b3174a4bc45a9007b92ecb0de7 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/trunk@51595 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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();