Author: mlytwyn
Date: Wed Apr 12 00:15:09 2017
New Revision: 40467

URL: http://svn.gna.org/viewcvs/gnustep?rev=40467&view=rev
Log:
More int to NSInteger updates

Modified:
    libs/gui/branches/gnustep_testplant_branch/Source/NSOutlineView.m

Modified: libs/gui/branches/gnustep_testplant_branch/Source/NSOutlineView.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/Source/NSOutlineView.m?rev=40467&r1=40466&r2=40467&view=diff
==============================================================================
--- libs/gui/branches/gnustep_testplant_branch/Source/NSOutlineView.m   
(original)
+++ libs/gui/branches/gnustep_testplant_branch/Source/NSOutlineView.m   Wed Apr 
12 00:15:09 2017
@@ -105,15 +105,15 @@
 - (BOOL) _shouldSelectRow: (int)rowIndex;
 - (BOOL) _shouldSelectionChange;
 - (BOOL) _shouldEditTableColumn: (NSTableColumn *)tableColumn
-                            row: (int) rowIndex;
+                            row: (NSInteger) rowIndex;
 - (void) _willDisplayCell: (NSCell*)cell
            forTableColumn: (NSTableColumn *)tb
-                      row: (int)index;
+                      row: (NSInteger)index;
 - (BOOL) _writeRows: (NSIndexSet *)rows
        toPasteboard: (NSPasteboard *)pboard;
 - (BOOL) _isDraggingSource;
 - (id) _objectValueForTableColumn: (NSTableColumn *)tb
-                              row: (int)index;
+                              row: (NSInteger)index;
 - (void) _setObjectValue: (id)value
           forTableColumn: (NSTableColumn *)tb
                      row: (NSInteger) index;
@@ -1831,7 +1831,7 @@
 }
 
 - (BOOL) _shouldEditTableColumn: (NSTableColumn *)tableColumn
-                            row: (int) rowIndex
+                            row: (NSInteger) rowIndex
 {
   if ([_delegate respondsToSelector:
     @selector(outlineView:shouldEditTableColumn:item:)])
@@ -1850,7 +1850,7 @@
 
 - (void) _willDisplayCell: (NSCell*)cell
            forTableColumn: (NSTableColumn *)tb
-                      row: (int)index
+                      row: (NSInteger)index
 {
   if (_del_responds)
     {
@@ -1893,7 +1893,7 @@
 }
 
 - (id) _objectValueForTableColumn: (NSTableColumn *)tb
-                              row: (int) index
+                              row: (NSInteger) index
 {
   id result = nil;
 


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

Reply via email to