aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-table-specification.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/e-table-specification.c')
-rw-r--r--e-util/e-table-specification.c31
1 files changed, 0 insertions, 31 deletions
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
*