summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_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/session_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/session_dialog.h')
-rw-r--r--gtk2_ardour/session_dialog.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/session_dialog.h b/gtk2_ardour/session_dialog.h
index 9d4f08ed97..d5fe14af05 100644
--- a/gtk2_ardour/session_dialog.h
+++ b/gtk2_ardour/session_dialog.h
@@ -113,7 +113,7 @@ private:
add (fullpath);
add (sample_rate);
add (disk_format);
- add (created_with);
+ add (modified_with);
add (time_modified);
add (time_formatted);
}
@@ -122,7 +122,7 @@ private:
Gtk::TreeModelColumn<std::string> fullpath;
Gtk::TreeModelColumn<std::string> sample_rate;
Gtk::TreeModelColumn<std::string> disk_format;
- Gtk::TreeModelColumn<std::string> created_with;
+ Gtk::TreeModelColumn<std::string> modified_with;
Gtk::TreeModelColumn<int64_t> time_modified;
Gtk::TreeModelColumn<std::string> time_formatted;
};
@@ -155,15 +155,15 @@ private:
add (name);
add (path);
add (description);
- add (created_with_short);
- add (created_with_long);
+ add (modified_with_short);
+ add (modified_with_long);
}
Gtk::TreeModelColumn<std::string> name;
Gtk::TreeModelColumn<std::string> path;
Gtk::TreeModelColumn<std::string> description;
- Gtk::TreeModelColumn<std::string> created_with_short;
- Gtk::TreeModelColumn<std::string> created_with_long;
+ Gtk::TreeModelColumn<std::string> modified_with_short;
+ Gtk::TreeModelColumn<std::string> modified_with_long;
};
SessionTemplateColumns session_template_columns;