cleaner version of feed9648 -- fixes #7067

This commit is contained in:
Robin Gareus 2016-10-11 22:57:38 +02:00
parent 6c933c7789
commit 0b51d760ad

View File

@ -131,9 +131,11 @@ AudioFileSource::AudioFileSource (Session& s, const string& path, Source::Flag f
} }
/** Constructor used for existing files via XML. File must exist. If _origin /** Constructor used for sources listed in session-files (XML)
* is an absolute path after ::set_state(), then the file is external to the * and missing sources (SilentFileSource).
* session. *
* If _origin is an absolute path after ::set_state(), then the
* file is external to the session.
*/ */
AudioFileSource::AudioFileSource (Session& s, const XMLNode& node, bool must_exist) AudioFileSource::AudioFileSource (Session& s, const XMLNode& node, bool must_exist)
: Source (s, node) : Source (s, node)
@ -146,7 +148,6 @@ AudioFileSource::AudioFileSource (Session& s, const XMLNode& node, bool must_exi
if (Glib::path_is_absolute (_origin)) { if (Glib::path_is_absolute (_origin)) {
_path = _origin; _path = _origin;
must_exist = true;
} }
if (init (_path, must_exist)) { if (init (_path, must_exist)) {