diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-02-06 04:27:09 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-02-06 04:27:09 +0800 |
commit | fdde6ab38346bc5a5a411f94eaee2aacd3e725de (patch) | |
tree | fbe8837d7750017ae8a8c0b1c59104760e4f6d68 /widgets | |
parent | 7301749d713555c513029cab6c957c7ce4f63306 (diff) | |
download | gsoc2013-evolution-fdde6ab38346bc5a5a411f94eaee2aacd3e725de.tar gsoc2013-evolution-fdde6ab38346bc5a5a411f94eaee2aacd3e725de.tar.gz gsoc2013-evolution-fdde6ab38346bc5a5a411f94eaee2aacd3e725de.tar.bz2 gsoc2013-evolution-fdde6ab38346bc5a5a411f94eaee2aacd3e725de.tar.lz gsoc2013-evolution-fdde6ab38346bc5a5a411f94eaee2aacd3e725de.tar.xz gsoc2013-evolution-fdde6ab38346bc5a5a411f94eaee2aacd3e725de.tar.zst gsoc2013-evolution-fdde6ab38346bc5a5a411f94eaee2aacd3e725de.zip |
Make some private variables static in `ETableSorter'.
svn path=/trunk/; revision=7982
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/table/e-table-sorter.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/widgets/table/e-table-sorter.c b/widgets/table/e-table-sorter.c index 0e7ef85461..08075f10e7 100644 --- a/widgets/table/e-table-sorter.c +++ b/widgets/table/e-table-sorter.c @@ -182,10 +182,10 @@ ets_sort_info_changed (ETableSortInfo *info, ETableSorter *ets) } static ETableSorter *ets_closure; -void **vals_closure; -int cols_closure; -int *ascending_closure; -GCompareFunc *compare_closure; +static void **vals_closure; +static int cols_closure; +static int *ascending_closure; +static GCompareFunc *compare_closure; /* FIXME: Make it not cache the second and later columns (as if anyone cares.) */ |