~xapantu/beat-box/animations

« back to all changes in this revision

Viewing changes to src/Views/ListView/RadioTreeModel.vala

  • Committer: sgringwe at gmail
  • Date: 2012-01-11 18:23:20 UTC
  • Revision ID: sgringwe@gmail.com-20120111182320-i117rvcsea2hsqry
getting closer to async imports. a few bugs to work out, mem leak to find, and testing remain

Show diffs side-by-side

added added

removed removed

Lines of Context:
427
427
                }
428
428
        }
429
429
        
 
430
        public void resort() {
 
431
                rows.sort_iter(sequenceIterCompareFunc);
 
432
                sort_column_changed();
 
433
        }
 
434
        
430
435
        /** Sets the comparison function used when sorting to be sort_func. **/
431
436
        public void set_sort_func(int sort_column_id, owned TreeIterCompareFunc sort_func) {
432
437
                column_sorts.set(sort_column_id, new CompareFuncHolder(sort_func));