From 0fe05a39f25b15cd39e249177b78b84850ce33bc Mon Sep 17 00:00:00 2001 From: Marcian Lytwyn Date: Fri, 1 Nov 2013 15:45:42 +0000 Subject: [PATCH] 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 --- Headers/AppKit/NSTableView.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Headers/AppKit/NSTableView.h b/Headers/AppKit/NSTableView.h index 27700c92f..ea55e5bb4 100644 --- a/Headers/AppKit/NSTableView.h +++ b/Headers/AppKit/NSTableView.h @@ -391,12 +391,6 @@ writeRowsWithIndexes: (NSIndexSet*)rows namesOfPromisedFilesDroppedAtDestination: (NSURL *)dropDestination forDraggedRowsWithIndexes: (NSIndexSet *)indexSet; #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 APPKIT_EXPORT NSString *NSTableViewColumnDidMoveNotification; @@ -449,6 +443,12 @@ dataCellForTableColumn: (NSTableColumn *)aTableColumn row: (NSInteger)row mouseLocation: (NSPoint)mouse; #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 #endif /* _GNUstep_H_NSTableView */