* 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
This commit is contained in:
Eric Wasylishen 2011-12-15 18:37:19 +00:00
parent 10ee7a4dd2
commit 6e831e5f00
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2011-12-15 Eric Wasylishen <ewasylishen@gmail.com>
* Headers/AppKit/NSTextView.h: Change _dragTargetLocation to NSUInteger
because NSNotFound no longer fits in unsigned int on 64-bit
2011-12-15 Eric Wasylishen <ewasylishen@gmail.com>
* Source/NSPrintPanel.m:

View file

@ -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;