mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:04:20 +00:00
* 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:
parent
63aa317bd8
commit
6bb67c5e40
2 changed files with 6 additions and 4 deletions
|
@ -4,6 +4,8 @@
|
|||
float -> CGFloat transitions
|
||||
* ColorPickers/GSColorSliderCell.m
|
||||
more float -> CGFloat transitions
|
||||
* Headers/AppKit/NSOutlineView.h
|
||||
int -> NSInteger transitions for NSOutlineView protocol
|
||||
|
||||
2013-03-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -96,13 +96,13 @@
|
|||
- (BOOL) outlineView: (NSOutlineView *)outlineView
|
||||
acceptDrop: (id <NSDraggingInfo>)info
|
||||
item: (id)item
|
||||
childIndex: (int)index;
|
||||
childIndex: (NSInteger)index;
|
||||
/**
|
||||
* Implementation of this method is required. Returns the child at
|
||||
* the specified index for the given item.
|
||||
*/
|
||||
- (id) outlineView: (NSOutlineView *)outlineView
|
||||
child: (int)index
|
||||
child: (NSInteger)index
|
||||
ofItem: (id)item;
|
||||
/**
|
||||
* 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
|
||||
* the given item.
|
||||
*/
|
||||
- (int) outlineView: (NSOutlineView *)outlineView
|
||||
- (NSInteger) outlineView: (NSOutlineView *)outlineView
|
||||
numberOfChildrenOfItem: (id)item;
|
||||
|
||||
/**
|
||||
|
@ -154,7 +154,7 @@
|
|||
- (NSDragOperation) outlineView: (NSOutlineView*)outlineView
|
||||
validateDrop: (id <NSDraggingInfo>)info
|
||||
proposedItem: (id)item
|
||||
proposedChildIndex: (int)index;
|
||||
proposedChildIndex: (NSInteger)index;
|
||||
|
||||
/**
|
||||
* Causes the outline view to write the specified items to the pastboard.
|
||||
|
|
Loading…
Reference in a new issue