diff --git a/ChangeLog b/ChangeLog
index 7225e85f9..828dd7bae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-29 Richard Frith-Macdonald Initializes and returns a new NSCursor with a NSImage newImage
- and a hot spot point with x=0 and y=15.
See Also: -initWithImage:hotSpot:
*/ - (id) initWithImage: (NSImage *)newImage { return [self initWithImage: newImage - hotSpot: NSMakePoint(0,15)]; + hotSpot: NSZeroPoint]; } /**Initializes and returns a new NSCursor with a NSImage newImage and the hot spot to hotSpot.
+NB. The coordinate system of an NSCursor is flipped, so a hotSpot at + 0,0 is in the top left corner of the cursor.
See Also: -initWithImage: -setImage:
*/ - (id) initWithImage: (NSImage *)newImage hotSpot: (NSPoint)hotSpot @@ -360,7 +362,9 @@ backgroundColorHint:(NSColor *)bg [super dealloc]; } -/**Returns the hot spot point of the NSCursor
+/**Returns the hot spot point of the NSCursor. This is in the + * cursor's coordinate system which is a flipped on (origin at the + * top left of the cursor).
*/ - (NSPoint) hotSpot {