summaryrefslogtreecommitdiffstats
path: root/src/progs/ingenuity/LoadRemotePatchWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-05-01 05:11:21 +0000
committerDavid Robillard <d@drobilla.net>2007-05-01 05:11:21 +0000
commit3f94f9ccf13d08b8bf7acd786e0b894f01fb5175 (patch)
treef7d2f92229498dc26e4af4005dbf7c920cf2c18a /src/progs/ingenuity/LoadRemotePatchWindow.cpp
parent3e5fef2e59776923f175a4260adf18c559ab861f (diff)
downloadingen-3f94f9ccf13d08b8bf7acd786e0b894f01fb5175.tar.gz
ingen-3f94f9ccf13d08b8bf7acd786e0b894f01fb5175.tar.bz2
ingen-3f94f9ccf13d08b8bf7acd786e0b894f01fb5175.zip
Fixed remote patch loading.
git-svn-id: http://svn.drobilla.net/lad/ingen@487 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/ingenuity/LoadRemotePatchWindow.cpp')
-rw-r--r--src/progs/ingenuity/LoadRemotePatchWindow.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/progs/ingenuity/LoadRemotePatchWindow.cpp b/src/progs/ingenuity/LoadRemotePatchWindow.cpp
index 12006f3f..d1aa0db3 100644
--- a/src/progs/ingenuity/LoadRemotePatchWindow.cpp
+++ b/src/progs/ingenuity/LoadRemotePatchWindow.cpp
@@ -65,10 +65,11 @@ LoadRemotePatchWindow::present(SharedPtr<PatchModel> patch, MetadataMap data)
_initial_data = data;
RDF::Model model(*App::instance().rdf_world(),
- "http://rdf.drobilla.net/ingen_patches/index.ttl");
+ "http://rdf.drobilla.net/ingen_patches/index.ttl",
+ "http://rdf.drobilla.net/ingen_patches/");
RDF::Query query(*App::instance().rdf_world(), Glib::ustring(
- "SELECT DISTINCT ?name ?uri FROM <> WHERE {"
+ "SELECT DISTINCT ?name ?uri WHERE {"
" ?uri a ingen:Patch ;"
" doap:name ?name ."
"}"));