diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-26 19:10:03 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-06-26 23:36:12 +0800 |
commit | e19fb153b191cdcfb66ca86d028da63dc0aaad3e (patch) | |
tree | b3387368a7b20030e5b3bc91933c9aaa11432504 /e-util | |
parent | 3b5a2a25705103a96ae8d9053ac7e6b6b6cd2420 (diff) | |
download | gsoc2013-evolution-e19fb153b191cdcfb66ca86d028da63dc0aaad3e.tar.gz gsoc2013-evolution-e19fb153b191cdcfb66ca86d028da63dc0aaad3e.tar.zst gsoc2013-evolution-e19fb153b191cdcfb66ca86d028da63dc0aaad3e.zip |
Remove unused e_table_column_specification_save_to_node().
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-table-column-specification.c | 30 | ||||
-rw-r--r-- | e-util/e-table-column-specification.h | 3 |
2 files changed, 0 insertions, 33 deletions
diff --git a/e-util/e-table-column-specification.c b/e-util/e-table-column-specification.c index 32c16a5553..01ae1c1186 100644 --- a/e-util/e-table-column-specification.c +++ b/e-util/e-table-column-specification.c @@ -126,33 +126,3 @@ e_table_column_specification_load_from_node (ETableColumnSpecification *etcs, etcs->title = g_strdup (""); } -xmlNode * -e_table_column_specification_save_to_node (ETableColumnSpecification *specification, - xmlNode *parent) -{ - xmlNode *node; - if (parent) - node = xmlNewChild (parent, NULL, (const guchar *)"ETableColumn", NULL); - else - node = xmlNewNode (NULL, (const guchar *)"ETableColumn"); - - e_xml_set_integer_prop_by_name (node, (const guchar *)"model_col", specification->model_col); - if (specification->compare_col != specification->model_col) - e_xml_set_integer_prop_by_name (node, (const guchar *)"compare_col", specification->compare_col); - e_xml_set_string_prop_by_name (node, (const guchar *)"_title", specification->title); - e_xml_set_string_prop_by_name (node, (const guchar *)"pixbuf", specification->pixbuf); - - e_xml_set_double_prop_by_name (node, (const guchar *)"expansion", specification->expansion); - e_xml_set_integer_prop_by_name (node, (const guchar *)"minimum_width", specification->minimum_width); - e_xml_set_bool_prop_by_name (node, (const guchar *)"resizable", specification->resizable); - e_xml_set_bool_prop_by_name (node, (const guchar *)"disabled", specification->disabled); - - e_xml_set_string_prop_by_name (node, (const guchar *)"cell", specification->cell); - e_xml_set_string_prop_by_name (node, (const guchar *)"compare", specification->compare); - e_xml_set_string_prop_by_name (node, (const guchar *)"search", specification->search); - if (specification->priority != 0) - e_xml_set_integer_prop_by_name (node, (const guchar *)"priority", specification->priority); - - return node; -} - diff --git a/e-util/e-table-column-specification.h b/e-util/e-table-column-specification.h index ae1a00cc65..0d4775f8ee 100644 --- a/e-util/e-table-column-specification.h +++ b/e-util/e-table-column-specification.h @@ -84,9 +84,6 @@ ETableColumnSpecification * void e_table_column_specification_load_from_node (ETableColumnSpecification *state, const xmlNode *node); -xmlNode * e_table_column_specification_save_to_node - (ETableColumnSpecification *state, - xmlNode *parent); G_END_DECLS |