diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2011-11-14 14:27:34 +1100 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2011-11-14 14:27:34 +1100 |
commit | 52d78d9ce53d95a159ddfa7952b84bf754dc6054 (patch) | |
tree | 3f46769a6ae3a46e546666c9ac01ab1d94828e63 /cocoa/ScintillaCocoa.h | |
parent | 82a36e852d6c45850f07d69aa87486851e53237c (diff) | |
download | scintilla-mirror-52d78d9ce53d95a159ddfa7952b84bf754dc6054.tar.gz |
Use fields to hold NSTimer pointers to avoid warnings from Analyze.
Does not change behaviour.
Diffstat (limited to 'cocoa/ScintillaCocoa.h')
-rw-r--r-- | cocoa/ScintillaCocoa.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cocoa/ScintillaCocoa.h b/cocoa/ScintillaCocoa.h index 58cc66b88..5ee1f149f 100644 --- a/cocoa/ScintillaCocoa.h +++ b/cocoa/ScintillaCocoa.h @@ -116,6 +116,9 @@ private: int scrollSpeed; int scrollTicks; + NSTimer* tickTimer; + NSTimer* idleTimer; + protected: PRectangle GetClientRectangle(); Point ConvertPoint(NSPoint point); |