summaryrefslogtreecommitdiffstats
path: root/src/URIMap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/URIMap.cpp')
-rw-r--r--src/URIMap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/URIMap.cpp b/src/URIMap.cpp
index 1dcf8a24..0be308d7 100644
--- a/src/URIMap.cpp
+++ b/src/URIMap.cpp
@@ -19,8 +19,8 @@
#include <glib.h>
#include "ingen/Log.hpp"
+#include "ingen/URI.hpp"
#include "ingen/URIMap.hpp"
-#include "raul/URI.hpp"
namespace Ingen {
@@ -54,7 +54,7 @@ URIMap::URIDMapFeature::default_map(LV2_URID_Map_Handle h,
LV2_URID
URIMap::URIDMapFeature::map(const char* uri)
{
- if (!Raul::URI::is_valid(uri)) {
+ if (!URI::is_valid(uri)) {
log.error(fmt("Attempt to map invalid URI <%1%>\n") % uri);
return 0;
}