Here too.

2003-01-15  Jeffrey Stedfast  <fejj@ximian.com>

	* gal-view-instance.c (save_current_view): Here too.

	* gal-view-collection.c (gal_view_collection_save): Use
	e_xml_save_file().

svn path=/trunk/; revision=19479
This commit is contained in:
Jeffrey Stedfast
2003-01-15 19:38:50 +00:00
committed by Jeffrey Stedfast
parent 2f949ea127
commit 285b33d516
2 changed files with 2 additions and 2 deletions

View File

@ -537,7 +537,7 @@ gal_view_collection_save (GalViewCollection *collection)
e_xml_set_string_prop_by_name(child, "type", item->type);
}
filename = g_concat_dir_and_file(collection->local_dir, "galview.xml");
xmlSaveFile(filename, doc);
e_xml_save_file (filename, doc);
xmlFreeDoc(doc);
g_free(filename);
}

View File

@ -92,7 +92,7 @@ save_current_view (GalViewInstance *instance)
if (instance->current_type)
e_xml_set_string_prop_by_name (root, "current_view_type", instance->current_type);
xmlSaveFile(instance->current_view_filename, doc);
e_xml_save_file (instance->current_view_filename, doc);
xmlFreeDoc(doc);
}