summaryrefslogtreecommitdiffstats
path: root/src/URIs.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-21 00:41:34 +0100
committerDavid Robillard <d@drobilla.net>2018-01-21 00:56:50 +0100
commit44f7ad5222d824d81dc743045d5887418847e74e (patch)
tree1b41535ac00b8b225a25dba2873b064cb074bfa9 /src/URIs.cpp
parent90fca083052880479ad90d870e556f0648e32106 (diff)
downloadingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.gz
ingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.bz2
ingen-44f7ad5222d824d81dc743045d5887418847e74e.zip
Add URI class and remove use of Raul::URI
Diffstat (limited to 'src/URIs.cpp')
-rw-r--r--src/URIs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/URIs.cpp b/src/URIs.cpp
index 3e56e4f4..af03b7b5 100644
--- a/src/URIs.cpp
+++ b/src/URIs.cpp
@@ -40,14 +40,14 @@ URIs::Quark::Quark(Forge& forge,
URIMap* map,
LilvWorld* lworld,
const char* str)
- : Raul::URI(str)
- , urid(forge.make_urid(Raul::URI(str)))
+ : URI(str)
+ , urid(forge.make_urid(URI(str)))
, uri(forge.alloc_uri(str))
, lnode(lilv_new_uri(lworld, str))
{}
URIs::Quark::Quark(const Quark& copy)
- : Raul::URI(copy)
+ : URI(copy)
, urid(copy.urid)
, uri(copy.uri)
, lnode(lilv_node_duplicate(copy.lnode))