Sha256: 60399c042efa2f2cdb90b2cebf68bdc6d879ad1e4e4036a12e9eb32814caaf61
Contents?: true
Size: 1.06 KB
Versions: 25
Compression:
Stored size: 1.06 KB
Contents
# Copyright (C) 2022 Ruby-GNOME Project Team # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA module Gtk module TreeSortable alias_method :set_sort_func_raw, :set_sort_func def set_sort_func(sort_column_id) set_sort_func_raw(sort_column_id) do |model, iter1, iter2| iter1.model = model iter2.model = model yield(model, iter1, iter2) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems
Version | Path |
---|---|
gtk4-4.0.4 | lib/gtk4/tree-sortable.rb |
gtk4-4.0.3 | lib/gtk4/tree-sortable.rb |
gtk4-4.0.2 | lib/gtk4/tree-sortable.rb |
gtk4-4.0.1 | lib/gtk4/tree-sortable.rb |
gtk4-4.0.0 | lib/gtk4/tree-sortable.rb |