aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaView.h
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2014-07-15 11:06:00 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2014-07-15 11:06:00 +1000
commit7b7865ca3062d57ebe990468a9275180f0d60569 (patch)
tree2ff401b77f6fa2dfb54b4adc049dae07c96dd816 /cocoa/ScintillaView.h
parent5cae5d81ac08a7c189798ce976a596a9d0a42e8f (diff)
downloadscintilla-mirror-7b7865ca3062d57ebe990468a9275180f0d60569.tar.gz
Switch from tracking rectangle to tracking area. This is the more recent Cocoa API and
allows detection of mouse movement when the view does not have the focus which is needed for dwell events.
Diffstat (limited to 'cocoa/ScintillaView.h')
-rw-r--r--cocoa/ScintillaView.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.h b/cocoa/ScintillaView.h
index 419c2f28f..102bf3b60 100644
--- a/cocoa/ScintillaView.h
+++ b/cocoa/ScintillaView.h
@@ -75,7 +75,7 @@ extern NSString *const SCIUpdateUINotification;
@private
ScintillaView* mOwner;
NSCursor* mCurrentCursor;
- NSTrackingRectTag mCurrentTrackingRect;
+ NSTrackingArea *trackingArea;
// Set when we are in composition mode and partial input is displayed.
NSRange mMarkedTextRange;