From 65a6b475d3c4c15a566100265c73022063aa43f3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 28 May 2009 01:38:34 +0000 Subject: Fix QNAMEs being serialised as URIs. Remove vestigial variable stuff. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2017 a436a847-0d15-0410-975c-d299462d15a1 --- raul/AtomRDF.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'raul/AtomRDF.hpp') diff --git a/raul/AtomRDF.hpp b/raul/AtomRDF.hpp index 496fcef..2d0ffae 100644 --- a/raul/AtomRDF.hpp +++ b/raul/AtomRDF.hpp @@ -93,7 +93,7 @@ atom_to_node(Redland::World& world, const Atom& atom) break; case Atom::URI: str = atom.get_uri(); - node = librdf_new_node_from_uri_string(world.world(), CUC(str.c_str())); + node = librdf_new_node_from_uri_string(world.world(), CUC(world.expand_uri(str).c_str())); break; case Atom::STRING: str = atom.get_string(); -- cgit v1.2.1