diff options
author | rowanbeentje <rowan@beent.je> | 2009-09-02 22:58:09 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-09-02 22:58:09 +0000 |
commit | 558a543e667d17b624b921317177710fd2407ba6 (patch) | |
tree | 7c9fa140f1694b7f8977cb0e2dc37e98ea8481ba /Source/SPTableView.m | |
parent | e1a704e83e3ac77f01847f532072bb75232430e4 (diff) | |
download | sequelpro-558a543e667d17b624b921317177710fd2407ba6.tar.gz sequelpro-558a543e667d17b624b921317177710fd2407ba6.tar.bz2 sequelpro-558a543e667d17b624b921317177710fd2407ba6.zip |
- Replaces uses of the deprecated selectRow:byExtendingSelection: with selectRowIndexes:byExtendingSelection:
Diffstat (limited to 'Source/SPTableView.m')
-rw-r--r-- | Source/SPTableView.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTableView.m b/Source/SPTableView.m index 801a528b..f52b44f5 100644 --- a/Source/SPTableView.m +++ b/Source/SPTableView.m @@ -52,7 +52,7 @@ return nil; } - [self selectRow:row byExtendingSelection:NO]; + [self selectRowIndexes:[NSIndexSet indexSetWithIndex:row] byExtendingSelection:NO]; [[self window] makeFirstResponder:self]; } |