Index: src/af/xap/cocoa/xap_CocoaDlg_PluginManager.cpp =================================================================== --- src/af/xap/cocoa/xap_CocoaDlg_PluginManager.cpp (revision 29720) +++ src/af/xap/cocoa/xap_CocoaDlg_PluginManager.cpp (working copy) @@ -436,7 +436,7 @@ if ([m_PluginRefs count]) { - [oPluginList selectRow:0 byExtendingSelection:NO]; + [oPluginList selectRowIndexes:[NSIndexSet indexSetWithIndex:0] byExtendingSelection:NO]; [self tableViewSelectionDidChange:nil]; } } Index: src/af/xap/cocoa/xap_GenericListChooser_Controller.cpp =================================================================== --- src/af/xap/cocoa/xap_GenericListChooser_Controller.cpp (revision 29720) +++ src/af/xap/cocoa/xap_GenericListChooser_Controller.cpp (working copy) @@ -86,7 +86,7 @@ - (void)setSelected:(int)idx { - [m_listTable selectRow:idx byExtendingSelection:NO]; + [m_listTable selectRowIndexes:[NSIndexSet indexSetWithIndex:idx] byExtendingSelection:NO]; [m_listTable scrollRowToVisible:(int)idx]; } Index: src/af/xap/cocoa/xap_CocoaDlg_Language.cpp =================================================================== --- src/af/xap/cocoa/xap_CocoaDlg_Language.cpp (revision 29720) +++ src/af/xap/cocoa/xap_CocoaDlg_Language.cpp (working copy) @@ -174,7 +174,7 @@ if (current_index >= 0) { - [_languageTable selectRow:current_index byExtendingSelection:NO]; + [_languageTable selectRowIndexes:[NSIndexSet indexSetWithIndex:current_index] byExtendingSelection:NO]; [_languageTable scrollRowToVisible:current_index]; } } Index: src/af/xap/cocoa/xap_CocoaDlg_FontChooser.cpp =================================================================== --- src/af/xap/cocoa/xap_CocoaDlg_FontChooser.cpp (revision 29720) +++ src/af/xap/cocoa/xap_CocoaDlg_FontChooser.cpp (working copy) @@ -582,7 +582,7 @@ if (value) { int idx = [(XAP_StringListDataSource*)[_fontList dataSource] rowWithCString:value]; if (idx >= 0) { - [_fontList selectRow:idx byExtendingSelection:NO]; + [_fontList selectRowIndexes:[NSIndexSet indexSetWithIndex:idx] byExtendingSelection:NO]; [_fontList scrollRowToVisible:idx]; } } @@ -617,7 +617,7 @@ snprintf(sizeString, 60, "%s", std_size_string(UT_convertToPoints(value))); idx = [(XAP_StringListDataSource*)[_sizeList dataSource] rowWithCString:(char *)XAP_EncodingManager::fontsizes_mapping.lookupBySource(sizeString)]; if (idx >= 0) { - [_sizeList selectRow:idx byExtendingSelection:NO]; + [_sizeList selectRowIndexes:[NSIndexSet indexSetWithIndex:idx] byExtendingSelection:NO]; [_sizeList scrollRowToVisible:idx]; } } @@ -657,7 +657,7 @@ UT_ASSERT(UT_SHOULD_NOT_HAPPEN); } if (st != -1) { - [_styleList selectRow:st byExtendingSelection:NO]; + [_styleList selectRowIndexes:[NSIndexSet indexSetWithIndex:st] byExtendingSelection:NO]; [_styleList scrollRowToVisible:st]; } } Index: src/wp/ap/cocoa/ap_CocoaDialog_Tab.cpp =================================================================== --- src/wp/ap/cocoa/ap_CocoaDialog_Tab.cpp (revision 29720) +++ src/wp/ap/cocoa/ap_CocoaDialog_Tab.cpp (working copy) @@ -267,7 +267,7 @@ [w deselectAll:m_dlg]; } else { - [w selectRow:v byExtendingSelection:NO]; + [w selectRowIndexes:[NSIndexSet indexSetWithIndex:v] byExtendingSelection:NO]; } } Index: src/wp/ap/cocoa/ap_CocoaDialog_Spell.cpp =================================================================== --- src/wp/ap/cocoa/ap_CocoaDialog_Spell.cpp (revision 29720) +++ src/wp/ap/cocoa/ap_CocoaDialog_Spell.cpp (working copy) @@ -415,7 +415,7 @@ - (void)selectSuggestion:(int)idx { - [_suggestionList selectRow:idx byExtendingSelection:NO]; + [_suggestionList selectRowIndexes:[NSIndexSet indexSetWithIndex:idx] byExtendingSelection:NO]; } - (void)reloadSuggestionList Index: src/wp/ap/cocoa/ap_CocoaDialog_Stylist.cpp =================================================================== --- src/wp/ap/cocoa/ap_CocoaDialog_Stylist.cpp (revision 29720) +++ src/wp/ap/cocoa/ap_CocoaDialog_Stylist.cpp (working copy) @@ -416,7 +416,7 @@ int row = [_stylistList rowForItem:childNode]; if (row >= 0) { - [_stylistList selectRow:row byExtendingSelection:NO]; + [_stylistList selectRowIndexes:[NSIndexSet indexSetWithIndex:row] byExtendingSelection:NO]; } else {