mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
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:
parent
b7222b06f9
commit
ef92cdbc23
3 changed files with 6 additions and 6 deletions
|
@ -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 */
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue