From d339144f61105e126f34ac61eb79a8ac319c3726 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Thu, 17 Feb 2011 21:43:27 +0000
Subject: Remember document patches were loaded from (fix ticket #603).

git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2986 a436a847-0d15-0410-975c-d299462d15a1
---
 src/serialisation/Parser.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src')

diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp
index 4ccb4525..b69900b5 100644
--- a/src/serialisation/Parser.cpp
+++ b/src/serialisation/Parser.cpp
@@ -310,7 +310,7 @@ Parser::parse(Ingen::Shared::World*                    world,
 		subject = nil;
 	}
 
-	std::string           path_str;
+	std::string           path_str = data_path ? data_path->chop_scheme() : "/";
 	boost::optional<Path> ret;
 	boost::optional<Path> root_path;
 
@@ -376,7 +376,7 @@ Parser::parse(Ingen::Shared::World*                    world,
 
 	}
 
-	return root_path;
+	return boost::optional<Path>(Path(path_str));
 }
 
 boost::optional<Path>
-- 
cgit v1.2.1