summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.h
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 /gtk2_ardour/add_route_dialog.h
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 'gtk2_ardour/add_route_dialog.h')
-rw-r--r--gtk2_ardour/add_route_dialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/add_route_dialog.h b/gtk2_ardour/add_route_dialog.h
index 351022c101..e5622db3ba 100644
--- a/gtk2_ardour/add_route_dialog.h
+++ b/gtk2_ardour/add_route_dialog.h
@@ -124,13 +124,13 @@ private:
add (name);
add (path);
add (description);
- add (created_with);
+ add (modified_with);
}
Gtk::TreeModelColumn<std::string> name;
Gtk::TreeModelColumn<std::string> path;
Gtk::TreeModelColumn<std::string> description;
- Gtk::TreeModelColumn<std::string> created_with;
+ Gtk::TreeModelColumn<std::string> modified_with;
};
TrackTemplateColumns track_template_columns;