mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 05:01:00 +00:00
* 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:
parent
694f8176e2
commit
4ccce7b985
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2011-12-15 Eric Wasylishen <ewasylishen@gmail.com>
|
||||||
|
|
||||||
* Source/NSPrintPanel.m:
|
* Source/NSPrintPanel.m:
|
||||||
|
|
|
@ -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
|
/* Ivar to store the location where text is going to be inserted during
|
||||||
* a DnD operation.
|
* a DnD operation.
|
||||||
*/
|
*/
|
||||||
unsigned int _dragTargetLocation;
|
NSUInteger _dragTargetLocation;
|
||||||
|
|
||||||
/* Ivar used to implement coalescing of undo operations */
|
/* Ivar used to implement coalescing of undo operations */
|
||||||
id _undoObject;
|
id _undoObject;
|
||||||
|
|
Loading…
Reference in a new issue