From 68808da4a0f8c60ac93cd0bbc3ea776d16503a6a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 22 Nov 2013 10:44:18 +0000 Subject: Content::_path to a vector. --- src/lib/content.cc | 14 +++++++------- src/lib/content.h | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'src/lib') diff --git a/src/lib/content.cc b/src/lib/content.cc index a41261998..c8f836d18 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -49,20 +49,19 @@ Content::Content (shared_ptr f, Time p) Content::Content (shared_ptr f, boost::filesystem::path p) : _film (f) - , _path (p) , _position (0) , _trim_start (0) , _trim_end (0) , _change_signals_frequent (false) { - + _paths.push_back (p); } Content::Content (shared_ptr f, shared_ptr node) : _film (f) , _change_signals_frequent (false) { - _path = node->string_child ("Path"); + _paths.push_back (node->string_child ("Path")); _digest = node->string_child ("Digest"); _position = node->number_child