aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-26 18:58:17 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-26 23:36:12 +0800
commitbe3e6825627400f8732df7a725d82913e9983546 (patch)
tree23d7eb2b66e303ef0a186d5ac0a4cb28f4bc4814
parent54a69c4cdaf3622c359d0ddc26223f3ebd503af4 (diff)
downloadgsoc2013-evolution-be3e6825627400f8732df7a725d82913e9983546.tar
gsoc2013-evolution-be3e6825627400f8732df7a725d82913e9983546.tar.gz
gsoc2013-evolution-be3e6825627400f8732df7a725d82913e9983546.tar.bz2
gsoc2013-evolution-be3e6825627400f8732df7a725d82913e9983546.tar.lz
gsoc2013-evolution-be3e6825627400f8732df7a725d82913e9983546.tar.xz
gsoc2013-evolution-be3e6825627400f8732df7a725d82913e9983546.tar.zst
gsoc2013-evolution-be3e6825627400f8732df7a725d82913e9983546.zip
Remove unused e_table_specification_save_to_string().
-rw-r--r--doc/reference/evolution-util/evolution-util-sections.txt1
-rw-r--r--e-util/e-table-specification.c31
-rw-r--r--e-util/e-table-specification.h2
3 files changed, 0 insertions, 34 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt
index c4388f1fd8..d7d1282702 100644
--- a/doc/reference/evolution-util/evolution-util-sections.txt
+++ b/doc/reference/evolution-util/evolution-util-sections.txt
@@ -3919,7 +3919,6 @@ e_table_specification_new
e_table_specification_load_from_file
e_table_specification_load_from_string
e_table_specification_load_from_node
-e_table_specification_save_to_string
e_table_specification_save_to_node
<SUBSECTION Standard>
E_TABLE_SPECIFICATION
diff --git a/e-util/e-table-specification.c b/e-util/e-table-specification.c
index 9f790fdbae..ba58e1ff7d 100644
--- a/e-util/e-table-specification.c
+++ b/e-util/e-table-specification.c
@@ -278,37 +278,6 @@ e_table_specification_load_from_node (ETableSpecification *specification,
}
/**
- * e_table_specification_save_to_string:
- * @specification: an #ETableSpecification
- *
- * Dumps the contents of @specification to a string. Free the returned
- * string with g_free().
- *
- * Returns: a newly-allocated string
- */
-gchar *
-e_table_specification_save_to_string (ETableSpecification *specification)
-{
- gchar *ret_val;
- xmlChar *string;
- gint length;
- xmlDoc *doc;
- xmlNode *node;
-
- g_return_val_if_fail (E_IS_TABLE_SPECIFICATION (specification), NULL);
-
- doc = xmlNewDoc ((const guchar *)"1.0");
- node = e_table_specification_save_to_node (specification);
- xmlDocSetRootElement (doc, node);
-
- xmlDocDumpMemory (doc, &string, &length);
- ret_val = g_strdup ((gchar *) string);
- xmlFree (string);
-
- return ret_val;
-}
-
-/**
* e_table_specification_save_to_node:
* @specification: an #ETableSpecification
*
diff --git a/e-util/e-table-specification.h b/e-util/e-table-specification.h
index 01e3a93f78..8933a40ec2 100644
--- a/e-util/e-table-specification.h
+++ b/e-util/e-table-specification.h
@@ -95,8 +95,6 @@ void e_table_specification_load_from_node
(ETableSpecification *specification,
const xmlNode *node);
-gchar * e_table_specification_save_to_string
- (ETableSpecification *specification);
xmlNode * e_table_specification_save_to_node
(ETableSpecification *specification);