Author: mlytwyn
Date: Fri Feb 17 22:48:26 2017
New Revision: 40348

URL: http://svn.gna.org/viewcvs/gnustep?rev=40348&view=rev
Log:
Update more int->NSInteger for window numbers

Modified:
    
libs/gui/branches/gnustep_testplant_branch/Headers/Additions/GNUstepGUI/GSDisplayServer.h
    libs/gui/branches/gnustep_testplant_branch/Source/GSDisplayServer.m
    libs/gui/branches/gnustep_testplant_branch/Source/GSDragView.m

Modified: 
libs/gui/branches/gnustep_testplant_branch/Headers/Additions/GNUstepGUI/GSDisplayServer.h
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/Headers/Additions/GNUstepGUI/GSDisplayServer.h?rev=40348&r1=40347&r2=40348&view=diff
==============================================================================
--- 
libs/gui/branches/gnustep_testplant_branch/Headers/Additions/GNUstepGUI/GSDisplayServer.h
   (original)
+++ 
libs/gui/branches/gnustep_testplant_branch/Headers/Additions/GNUstepGUI/GSDisplayServer.h
   Fri Feb 17 22:48:26 2017
@@ -93,8 +93,8 @@
 - (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 */

Modified: libs/gui/branches/gnustep_testplant_branch/Source/GSDisplayServer.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/Source/GSDisplayServer.m?rev=40348&r1=40347&r2=40348&view=diff
==============================================================================
--- libs/gui/branches/gnustep_testplant_branch/Source/GSDisplayServer.m 
(original)
+++ libs/gui/branches/gnustep_testplant_branch/Source/GSDisplayServer.m Fri Feb 
17 22:48:26 2017
@@ -416,8 +416,8 @@
 }
 
 - (int) findWindowAt: (NSPoint)screenLocation 
-           windowRef: (int*)windowRef 
-           excluding: (int)win
+           windowRef: (NSInteger*)windowRef
+           excluding: (NSInteger)win
 {
   [self subclassResponsibility: _cmd];
   return 0;

Modified: libs/gui/branches/gnustep_testplant_branch/Source/GSDragView.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/Source/GSDragView.m?rev=40348&r1=40347&r2=40348&view=diff
==============================================================================
--- libs/gui/branches/gnustep_testplant_branch/Source/GSDragView.m      
(original)
+++ libs/gui/branches/gnustep_testplant_branch/Source/GSDragView.m      Fri Feb 
17 22:48:26 2017
@@ -915,8 +915,8 @@
       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)


_______________________________________________
Gnustep-cvs mailing list
Gnustep-cvs@gna.org
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to