diff options
author | David Robillard <d@drobilla.net> | 2010-03-04 03:52:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-03-04 03:52:08 +0000 |
commit | 3157f13a4f8227d53d4c6c0669d2ea2e7ebe7d6b (patch) | |
tree | 004aed4a43706a390b7732bbcd7c955d55b42f5d /src/shared | |
parent | e48334e90bad338e6d83eca109702dedbf22f3e1 (diff) | |
download | ingen-3157f13a4f8227d53d4c6c0669d2ea2e7ebe7d6b.tar.gz ingen-3157f13a4f8227d53d4c6c0669d2ea2e7ebe7d6b.tar.bz2 ingen-3157f13a4f8227d53d4c6c0669d2ea2e7ebe7d6b.zip |
Remove Raul::Path::root, Raul::Path::prefix, and Raul:Path::scheme from public API.
Add ability to modify root path from application code (before any paths are created).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2514 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/ClashAvoider.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/ClashAvoider.cpp b/src/shared/ClashAvoider.cpp index f3344a5f..7e191a0e 100644 --- a/src/shared/ClashAvoider.cpp +++ b/src/shared/ClashAvoider.cpp @@ -31,7 +31,7 @@ namespace Shared { const URI ClashAvoider::map_uri(const Raul::URI& in) { - if (in.scheme() == Path::scheme && Path::is_valid(in.str())) + if (Path::is_path(in)) return map_path(in.str()); else return in; |