aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-table-sort-info.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-27 12:18:13 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-07-02 22:34:10 +0800
commit0b9b5aa31d7e4a328959b3db3038b56a7cf89891 (patch)
treed0fbd111b3e59c9f85c21a18d2821143f839313b /e-util/e-table-sort-info.h
parent59ddc1f073aff7d67399c3b0ecc3ec3ec9218aba (diff)
downloadgsoc2013-evolution-0b9b5aa31d7e4a328959b3db3038b56a7cf89891.tar
gsoc2013-evolution-0b9b5aa31d7e4a328959b3db3038b56a7cf89891.tar.gz
gsoc2013-evolution-0b9b5aa31d7e4a328959b3db3038b56a7cf89891.tar.bz2
gsoc2013-evolution-0b9b5aa31d7e4a328959b3db3038b56a7cf89891.tar.lz
gsoc2013-evolution-0b9b5aa31d7e4a328959b3db3038b56a7cf89891.tar.xz
gsoc2013-evolution-0b9b5aa31d7e4a328959b3db3038b56a7cf89891.tar.zst
gsoc2013-evolution-0b9b5aa31d7e4a328959b3db3038b56a7cf89891.zip
ETableSortInfo: Use *unsigned* ints for index/length params.
So we don't have to worry about negative values.
Diffstat (limited to 'e-util/e-table-sort-info.h')
-rw-r--r--e-util/e-table-sort-info.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/e-util/e-table-sort-info.h b/e-util/e-table-sort-info.h
index 28ca607f3f..ad3b3db4e4 100644
--- a/e-util/e-table-sort-info.h
+++ b/e-util/e-table-sort-info.h
@@ -89,28 +89,28 @@ guint e_table_sort_info_grouping_get_count
(ETableSortInfo *sort_info);
void e_table_sort_info_grouping_truncate
(ETableSortInfo *sort_info,
- gint length);
+ guint length);
ETableSortColumn
e_table_sort_info_grouping_get_nth
(ETableSortInfo *sort_info,
- gint n);
+ guint n);
void e_table_sort_info_grouping_set_nth
(ETableSortInfo *sort_info,
- gint n,
+ guint n,
ETableSortColumn column);
guint e_table_sort_info_sorting_get_count
(ETableSortInfo *sort_info);
void e_table_sort_info_sorting_truncate
(ETableSortInfo *sort_info,
- gint length);
+ guint length);
ETableSortColumn
e_table_sort_info_sorting_get_nth
(ETableSortInfo *sort_info,
- gint n);
+ guint n);
void e_table_sort_info_sorting_set_nth
(ETableSortInfo *sort_info,
- gint n,
+ guint n,
ETableSortColumn column);
void e_table_sort_info_load_from_node
(ETableSortInfo *sort_info,