summaryrefslogtreecommitdiff
path: root/libs/ardour/template_utils.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-09-21 02:00:05 +0200
committerRobin Gareus <robin@gareus.org>2017-09-21 02:01:12 +0200
commit0fd861d8dedbaa5d262432b05cf9b1fe66381eab (patch)
treeafb75ee6a11b5e57ac086473068ea4142fe5dee8 /libs/ardour/template_utils.cc
parenta42f6ff8288d6065bdf2fb27a0ef4457f7ec21d3 (diff)
s/created with/modified with/
Once a session has been saved by a more recent version or a different variant, the session file is tied to that version/variant. The created-with version is only for debug purposes and internal use.
Diffstat (limited to 'libs/ardour/template_utils.cc')
-rw-r--r--libs/ardour/template_utils.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/libs/ardour/template_utils.cc b/libs/ardour/template_utils.cc
index ceeefb0e51..f6b6c59fbc 100644
--- a/libs/ardour/template_utils.cc
+++ b/libs/ardour/template_utils.cc
@@ -110,14 +110,14 @@ find_session_templates (vector<TemplateInfo>& template_names, bool read_xml)
XMLNode* root = tree.root();
- rti.created_with = _("(unknown)");
+ rti.modified_with = _("(unknown)");
try {
XMLNode *pv = root->child("ProgramVersion");
- string created_with;
+ string modified_with;
if (pv != 0) {
- pv->get_property (X_("created-with"), created_with);
+ pv->get_property (X_("modified-with"), modified_with);
}
- rti.created_with = created_with;
+ rti.modified_with = modified_with;
} catch (XMLException &e) {}
rti.description = _("No Description");
@@ -158,14 +158,14 @@ find_route_templates (vector<TemplateInfo>& template_names)
TemplateInfo rti;
- rti.created_with = _("(unknown)");
+ rti.modified_with = _("(unknown)");
try {
XMLNode *pv = root->child("ProgramVersion");
- string created_with;
+ string modified_with;
if (pv != 0) {
- pv->get_property (X_("created-with"), created_with);
+ pv->get_property (X_("modified-with"), modified_with);
}
- rti.created_with = created_with;
+ rti.modified_with = modified_with;
} catch (XMLException &e) {}
rti.description = _("No Description");