From: Robin Gareus Date: Wed, 30 Aug 2017 16:01:17 +0000 (+0200) Subject: Fix scope in 4c077010a X-Git-Tag: 5.12~51 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=f52f23b12d63ce5dad5aee564915278795114878 Fix scope in 4c077010a --- diff --git a/gtk2_ardour/template_dialog.cc b/gtk2_ardour/template_dialog.cc index 65fa30d58b..a5bbcd4089 100644 --- a/gtk2_ardour/template_dialog.cc +++ b/gtk2_ardour/template_dialog.cc @@ -434,10 +434,9 @@ TemplateManager::save_template_desc () XMLNode* desc = new XMLNode (X_("description")); XMLNode* dn = new XMLNode (X_("content"), desc_txt); desc->add_child_nocopy (*dn); + tree.root()->add_child_nocopy (*desc); } - tree.root()->add_child_nocopy (*desc); - if (!tree.write ()) { error << string_compose(X_("Could not write to template file \"%1\"."), file_path) << endmsg; return;