From 3265e8f01cd4e878661973730349a5ed44329713 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Feb 2013 16:58:42 +0000 Subject: More generic Atom class. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5024 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/RDFS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/RDFS.cpp') diff --git a/src/gui/RDFS.cpp b/src/gui/RDFS.cpp index 667e51fe..671ef69e 100644 --- a/src/gui/RDFS.cpp +++ b/src/gui/RDFS.cpp @@ -87,8 +87,8 @@ types(World* world, SPtr model) URISet types; PropRange range = model->properties().equal_range(world->uris().rdf_type); for (PropIter t = range.first; t != range.second; ++t) { - types.insert(Raul::URI(t->second.get_uri())); - if (world->uris().ingen_Graph == t->second.get_uri()) { + types.insert(Raul::URI(t->second.ptr())); + if (world->uris().ingen_Graph == t->second.ptr()) { // Add lv2:Plugin as a type for graphs so plugin properties show up types.insert(world->uris().lv2_Plugin); } -- cgit v1.2.1