From aa2f119eb656cc2064da691328239010f51afb98 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 2 Dec 2018 10:46:09 +0300 Subject: remove getSelectedTableRowIds (Tables.getSelected) --- js/prefs.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/prefs.js') diff --git a/js/prefs.js b/js/prefs.js index f12c31441..3b9e090cc 100755 --- a/js/prefs.js +++ b/js/prefs.js @@ -314,7 +314,7 @@ function getSelectedLabels() { } function getSelectedUsers() { - return getSelectedTableRowIds("prefUserList"); + return Tables.getSelected("prefUserList"); } function getSelectedFeeds() { @@ -832,7 +832,7 @@ function showInactiveFeeds() { title: __("Feeds without recent updates"), style: "width: 600px", getSelectedFeeds: function () { - return getSelectedTableRowIds("prefInactiveFeedList"); + return Tables.getSelected("prefInactiveFeedList"); }, removeSelected: function () { const sel_rows = this.getSelectedFeeds(); @@ -922,7 +922,7 @@ function editProfiles() { title: __("Settings Profiles"), style: "width: 600px", getSelectedProfiles: function () { - return getSelectedTableRowIds("prefFeedProfileList"); + return Tables.getSelected("prefFeedProfileList"); }, removeSelected: function () { const sel_rows = this.getSelectedProfiles(); -- cgit v1.2.3