aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/MachinaGUI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/MachinaGUI.cpp')
-rw-r--r--src/gui/MachinaGUI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/MachinaGUI.cpp b/src/gui/MachinaGUI.cpp
index eabb4c9..39dd098 100644
--- a/src/gui/MachinaGUI.cpp
+++ b/src/gui/MachinaGUI.cpp
@@ -276,7 +276,7 @@ MachinaGUI::menu_file_save()
Raul::RDF::Model model(_engine->rdf_world());
cout << "Writing machine to " << save_filename << endl;
machine()->write_state(model);
- model.serialize_to_file(save_filename);
+ model.serialise_to_file(save_filename);
free(save_filename);
}
}
@@ -326,7 +326,7 @@ MachinaGUI::menu_file_save_as()
if (confirm) {
Raul::RDF::Model model(_engine->rdf_world());
_engine->machine()->write_state(model);
- model.serialize_to_file(filename);
+ model.serialise_to_file(filename);
_save_uri = dialog.get_uri();
}
}