table view delegate methods incorrectly added to datasource protocol section

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@37348 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Marcian Lytwyn 2013-11-01 15:45:42 +00:00
parent 0122926822
commit 0fe05a39f2

View file

@ -391,12 +391,6 @@ writeRowsWithIndexes: (NSIndexSet*)rows
namesOfPromisedFilesDroppedAtDestination: (NSURL *)dropDestination namesOfPromisedFilesDroppedAtDestination: (NSURL *)dropDestination
forDraggedRowsWithIndexes: (NSIndexSet *)indexSet; forDraggedRowsWithIndexes: (NSIndexSet *)indexSet;
#endif #endif
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5, GS_API_LATEST)
- (BOOL)tableView:(NSTableView*)tableView isGroupRow:(NSInteger)row;
- (NSCell *)tableView:(NSTableView*)tableView dataCellForTableColumn:(NSTableColumn*)tableColumn row:(NSInteger)row;
- (NSIndexSet *)tableView:(NSTableView*)tableView selectionIndexesForProposedSelection:(NSIndexSet*)proposedSelectionIndexes;
#endif
@end @end
APPKIT_EXPORT NSString *NSTableViewColumnDidMoveNotification; APPKIT_EXPORT NSString *NSTableViewColumnDidMoveNotification;
@ -449,6 +443,12 @@ dataCellForTableColumn: (NSTableColumn *)aTableColumn
row: (NSInteger)row row: (NSInteger)row
mouseLocation: (NSPoint)mouse; mouseLocation: (NSPoint)mouse;
#endif #endif
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5, GS_API_LATEST)
- (BOOL)tableView:(NSTableView*)tableView isGroupRow:(NSInteger)row;
- (NSCell *)tableView:(NSTableView*)tableView dataCellForTableColumn:(NSTableColumn*)tableColumn row:(NSInteger)row;
- (NSIndexSet *)tableView:(NSTableView*)tableView selectionIndexesForProposedSelection:(NSIndexSet*)proposedSelectionIndexes;
#endif
@end @end
#endif /* _GNUstep_H_NSTableView */ #endif /* _GNUstep_H_NSTableView */