* Headers/AppKit/NSOutlineView.h

int -> NSInteger transitions for NSOutlineView protocol

OK Fred



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36240 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
buzzdee 2013-03-02 18:09:21 +00:00
parent a2d4ecefe9
commit 6a910f1aa5
2 changed files with 6 additions and 4 deletions

View file

@ -4,6 +4,8 @@
float -> CGFloat transitions float -> CGFloat transitions
* ColorPickers/GSColorSliderCell.m * ColorPickers/GSColorSliderCell.m
more float -> CGFloat transitions more float -> CGFloat transitions
* Headers/AppKit/NSOutlineView.h
int -> NSInteger transitions for NSOutlineView protocol
2013-03-01 Richard Frith-Macdonald <rfm@gnu.org> 2013-03-01 Richard Frith-Macdonald <rfm@gnu.org>

View file

@ -96,13 +96,13 @@
- (BOOL) outlineView: (NSOutlineView *)outlineView - (BOOL) outlineView: (NSOutlineView *)outlineView
acceptDrop: (id <NSDraggingInfo>)info acceptDrop: (id <NSDraggingInfo>)info
item: (id)item item: (id)item
childIndex: (int)index; childIndex: (NSInteger)index;
/** /**
* Implementation of this method is required. Returns the child at * Implementation of this method is required. Returns the child at
* the specified index for the given item. * the specified index for the given item.
*/ */
- (id) outlineView: (NSOutlineView *)outlineView - (id) outlineView: (NSOutlineView *)outlineView
child: (int)index child: (NSInteger)index
ofItem: (id)item; ofItem: (id)item;
/** /**
* This is a required method. Returns whether or not the outline view * This is a required method. Returns whether or not the outline view
@ -121,7 +121,7 @@
* This is a required method. Returns the number of children of * This is a required method. Returns the number of children of
* the given item. * the given item.
*/ */
- (int) outlineView: (NSOutlineView *)outlineView - (NSInteger) outlineView: (NSOutlineView *)outlineView
numberOfChildrenOfItem: (id)item; numberOfChildrenOfItem: (id)item;
/** /**
@ -154,7 +154,7 @@
- (NSDragOperation) outlineView: (NSOutlineView*)outlineView - (NSDragOperation) outlineView: (NSOutlineView*)outlineView
validateDrop: (id <NSDraggingInfo>)info validateDrop: (id <NSDraggingInfo>)info
proposedItem: (id)item proposedItem: (id)item
proposedChildIndex: (int)index; proposedChildIndex: (NSInteger)index;
/** /**
* Causes the outline view to write the specified items to the pastboard. * Causes the outline view to write the specified items to the pastboard.