* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
+ * or version 3 of the License (at your option).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
global.display.get_tab_list = function(type, workspace) {
const ret = oldGetTabList.call(this, type, workspace);
const currentWindow = global.display.get_focus_window().get_id();
- ret.sort((a, b) => roundRobinRomparitor(currentWindow, a, b));
+ ret.sort((a, b) => roundRobinComparitor(currentWindow, a, b));
return ret;
};
}