diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-26 13:00:45 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-26 13:00:45 -0800 |
commit | 4d10bc017ad683ffa3e7e399b9bcb9dcf524d964 (patch) | |
tree | 6a574035a59ded9981471249dccb497cb999adf4 /gtk-gui.c | |
parent | 6e0ea1ce618d9d28d9512e2afe587bde9ae76fda (diff) | |
download | subsurface-4d10bc017ad683ffa3e7e399b9bcb9dcf524d964.tar.gz |
Split up file reading from 'parse-xml.c' into 'file.c'
We're going to eventually import non-xml files too, so let's begin
splitting the logic up.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r-- | gtk-gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -114,7 +114,7 @@ static void file_open(GtkWidget *w, gpointer data) GError *error = NULL; while(filenames != NULL) { filename = filenames->data; - parse_xml_file(filename, &error); + parse_file(filename, &error); if (error != NULL) { report_error(error); @@ -961,7 +961,7 @@ static GtkWidget *xml_file_selector(GtkWidget *vbox, GtkWidget *main_dialog) static void do_import_file(gpointer data, gpointer user_data) { GError *error = NULL; - parse_xml_file(data, &error); + parse_file(data, &error); if (error != NULL) { |