aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-10-19 10:59:14 +0800
committerChris Lahey <clahey@src.gnome.org>2000-10-19 10:59:14 +0800
commitfc142d01102d257de415fcaa350d3f58cf30783c (patch)
treed84fbc37cefe2223119803dfb59a8f1d9501fbd2 /widgets
parent78bdc918f67fb9597f3c1c22c166a9f3087497be (diff)
downloadgsoc2013-evolution-fc142d01102d257de415fcaa350d3f58cf30783c.tar
gsoc2013-evolution-fc142d01102d257de415fcaa350d3f58cf30783c.tar.gz
gsoc2013-evolution-fc142d01102d257de415fcaa350d3f58cf30783c.tar.bz2
gsoc2013-evolution-fc142d01102d257de415fcaa350d3f58cf30783c.tar.lz
gsoc2013-evolution-fc142d01102d257de415fcaa350d3f58cf30783c.tar.xz
gsoc2013-evolution-fc142d01102d257de415fcaa350d3f58cf30783c.tar.zst
gsoc2013-evolution-fc142d01102d257de415fcaa350d3f58cf30783c.zip
Switched to saving the version as a double instead of a string.
2000-10-18 Christopher James Lahey <clahey@helixcode.com> * e-table-state.c: Switched to saving the version as a double instead of a string. svn path=/trunk/; revision=6019
Diffstat (limited to 'widgets')
-rw-r--r--widgets/table/e-table-state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-state.c b/widgets/table/e-table-state.c
index 087fc81258..9361f4f940 100644
--- a/widgets/table/e-table-state.c
+++ b/widgets/table/e-table-state.c
@@ -148,7 +148,7 @@ e_table_state_save_to_node (ETableState *state,
else
node = xmlNewNode (NULL, "ETableState");
- e_xml_set_string_prop_by_name(node, "state-version", "0");
+ e_xml_set_double_prop_by_name(node, "state-version", 0.0);
for (i = 0; i < state->col_count; i++) {
int column = state->columns[i];