diff options
author | David Robillard <d@drobilla.net> | 2008-11-09 01:32:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-11-09 01:32:38 +0000 |
commit | 5d1f579900182f283a1c21ad4e59daf7f035e219 (patch) | |
tree | e73066002177cf48a31eef91712aa74839dfc555 /src/gui | |
parent | 23bb407a4f0db71eb15cbf8bbb8e82e02088a998 (diff) | |
download | ingen-5d1f579900182f283a1c21ad4e59daf7f035e219.tar.gz ingen-5d1f579900182f283a1c21ad4e59daf7f035e219.tar.bz2 ingen-5d1f579900182f283a1c21ad4e59daf7f035e219.zip |
Move patch to /patch via HTTP to give a place for RESTful access to other things.
Implement HTTP access to plugins.
Work towards client being able to use HTTP to connect.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1712 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/LoadPluginWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/LoadPluginWindow.cpp b/src/gui/LoadPluginWindow.cpp index c6815075..5036427e 100644 --- a/src/gui/LoadPluginWindow.cpp +++ b/src/gui/LoadPluginWindow.cpp @@ -217,7 +217,7 @@ LoadPluginWindow::set_plugins(SharedPtr<const ClientStore::Plugins> m) row[_plugins_columns._col_name] = plugin->name(); if (!strcmp(plugin->type_uri(), "ingen:Internal")) row[_plugins_columns._col_type] = "Internal"; - else if (!strcmp(plugin->type_uri(), "ingen:LV2")) + else if (!strcmp(plugin->type_uri(), "lv2:Plugin")) row[_plugins_columns._col_type] = "LV2"; else if (!strcmp(plugin->type_uri(), "ingen:LADSPA")) row[_plugins_columns._col_type] = "LADSPA"; |