From 4ccce7b985b6ce522dbdb3225d1a2770b505141a Mon Sep 17 00:00:00 2001 From: ericwa Date: Thu, 15 Dec 2011 18:37:19 +0000 Subject: [PATCH] * Headers/AppKit/NSTextView.h: Change _dragTargetLocation to NSUInteger because NSNotFound no longer fits in unsigned int on 64-bit git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34295 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Headers/AppKit/NSTextView.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c8eacfc50..47eb4502b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-12-15 Eric Wasylishen + + * Headers/AppKit/NSTextView.h: Change _dragTargetLocation to NSUInteger + because NSNotFound no longer fits in unsigned int on 64-bit + 2011-12-15 Eric Wasylishen * Source/NSPrintPanel.m: diff --git a/Headers/AppKit/NSTextView.h b/Headers/AppKit/NSTextView.h index a412e99cb..7f2c01003 100644 --- a/Headers/AppKit/NSTextView.h +++ b/Headers/AppKit/NSTextView.h @@ -230,7 +230,7 @@ therefore be stored in the NSLayoutManager to avoid problems. /* Ivar to store the location where text is going to be inserted during * a DnD operation. */ - unsigned int _dragTargetLocation; + NSUInteger _dragTargetLocation; /* Ivar used to implement coalescing of undo operations */ id _undoObject;