Author: mlytwyn
Date: Wed Apr 12 00:24:10 2017
New Revision: 40468

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

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

Modified: libs/gui/branches/gnustep_testplant_branch/Source/GSThemeDrawing.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/Source/GSThemeDrawing.m?rev=40468&r1=40467&r2=40468&view=diff
==============================================================================
--- libs/gui/branches/gnustep_testplant_branch/Source/GSThemeDrawing.m  
(original)
+++ libs/gui/branches/gnustep_testplant_branch/Source/GSThemeDrawing.m  Wed Apr 
12 00:24:10 2017
@@ -76,9 +76,9 @@
 
 @interface NSTableView (Private)
 - (CGFloat *)_columnOrigins;
-- (void) _willDisplayCell: (NSCell*)cell forTableColumn: (NSTableColumn *)tb 
row: (int)index;
+- (void) _willDisplayCell: (NSCell*)cell forTableColumn: (NSTableColumn *)tb 
row: (NSInteger)index;
 // TESTPLANT-MAL-2016: Keeping for tableview grouped row support AKA Cocoa...
-- (NSCell *) _dataCellForTableColumn: (NSTableColumn *)tb row: (int) rowIndex;
+- (NSCell *) _dataCellForTableColumn: (NSTableColumn *)tb row: (NSInteger) 
rowIndex;
 - (BOOL)_isGroupRow: (NSInteger)rowIndex;
 @end
  

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=40468&r1=40467&r2=40468&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:24:10 2017
@@ -137,7 +137,7 @@
 // Testplant-MAL-2015-07-01: _dataCellForTableColumn incldued due to 
NSTableView 
 // for group row processing...
 - (NSCell *) _dataCellForTableColumn: (NSTableColumn *)tb
-                                 row: (int) rowIndex;
+                                 row: (NSInteger) rowIndex;
 @end
 
 @interface     NSOutlineView (Private)
@@ -2263,7 +2263,7 @@
 // Testplant-MAL-2015-07-01: Testplant branch code used due to NSTableView 
 // for group row processing...
 - (NSCell *) _dataCellForTableColumn: (NSTableColumn *)tb
-                                 row: (int) rowIndex
+                                 row: (NSInteger) rowIndex
 {
   NSCell *cell = nil;
   if ([_delegate respondsToSelector:


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to