13
0

Add overwrite option to save_template. (default = false)

Before it could not overwrite.
This commit is contained in:
André Nusser 2015-10-12 12:27:28 +02:00 committed by Paul Davis
parent e4570242f3
commit 67f557b1f4
2 changed files with 4 additions and 4 deletions

View File

@ -459,7 +459,7 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
int save_as (SaveAs&);
int save_state (std::string snapshot_name, bool pending = false, bool switch_to_snapshot = false, bool template_only = false);
int restore_state (std::string snapshot_name);
int save_template (std::string template_name);
int save_template (std::string template_name, bool replace_existing = false);
int save_history (std::string snapshot_name = "");
int restore_history (std::string snapshot_name);
void remove_state (std::string snapshot_name);

View File

@ -2102,7 +2102,7 @@ Session::XMLSourceFactory (const XMLNode& node)
}
int
Session::save_template (string template_name)
Session::save_template (string template_name, bool replace_existing)
{
if ((_state_of_the_state & CannotSave) || template_name.empty ()) {
return -1;
@ -2128,10 +2128,10 @@ Session::save_template (string template_name)
}
if (!ARDOUR::Profile->get_trx()) {
if (Glib::file_test (template_dir_path, Glib::FILE_TEST_EXISTS)) {
if (!replace_existing && Glib::file_test (template_dir_path, Glib::FILE_TEST_EXISTS)) {
warning << string_compose(_("Template \"%1\" already exists - new version not created"),
template_dir_path) << endmsg;
return -1;
return -2;
}
if (g_mkdir_with_parents (template_dir_path.c_str(), 0755) != 0) {