Update more int->NSInteger for window numbers

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@40348 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Marcian Lytwyn 2017-02-17 21:48:26 +00:00
parent b7222b06f9
commit ef92cdbc23
3 changed files with 6 additions and 6 deletions

View file

@ -93,8 +93,8 @@ APPKIT_EXPORT NSString *GSScreenNumber;
- (BOOL) slideImage: (NSImage*)image from: (NSPoint)from to: (NSPoint)to;
- (void) restrictWindow: (NSInteger)win toImage: (NSImage*)image;
- (int) findWindowAt: (NSPoint)screenLocation
windowRef: (int*)windowRef
excluding: (int)win;
windowRef: (NSInteger*)windowRef
excluding: (NSInteger)win;
/* Screen information */

View file

@ -416,8 +416,8 @@ GSCurrentServer(void)
}
- (int) findWindowAt: (NSPoint)screenLocation
windowRef: (int*)windowRef
excluding: (int)win
windowRef: (NSInteger*)windowRef
excluding: (NSInteger)win
{
[self subclassResponsibility: _cmd];
return 0;

View file

@ -915,8 +915,8 @@ static GSDragView *sharedDragView = nil;
dragPoint = [destWindow convertScreenToBase: dragPosition];
}
NSDebugLLog(@"NSDragging", @"mouse window %d (%@) at %@\n",
mouseWindowRef, destWindow, NSStringFromPoint(dragPosition));
NSDebugLLog(@"NSDragging", @"mouse window %ld (%@) at %@\n",
(long)mouseWindowRef, destWindow, NSStringFromPoint(dragPosition));
//--- send exit message if necessary -------------------------------------
if ((mouseWindowRef != targetWindowRef) && targetWindowRef)