diff options
author | David Robillard <d@drobilla.net> | 2009-05-12 04:59:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-12 04:59:38 +0000 |
commit | f230de56d33171a45588af91d31a3ea09c840933 (patch) | |
tree | 4f70ec9de4452c690ec30d406264d7c5f9fe2f07 /src/client | |
parent | 0fd55176b99cd6bd3230afdf350687a04702bd92 (diff) | |
download | ingen-f230de56d33171a45588af91d31a3ea09c840933.tar.gz ingen-f230de56d33171a45588af91d31a3ea09c840933.tar.bz2 ingen-f230de56d33171a45588af91d31a3ea09c840933.zip |
Fix internal node names.
Update glade file.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1986 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/PluginModel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/PluginModel.cpp b/src/client/PluginModel.cpp index f733087e..02d68330 100644 --- a/src/client/PluginModel.cpp +++ b/src/client/PluginModel.cpp @@ -49,6 +49,8 @@ PluginModel::PluginModel(const string& uri, const string& type_uri) _slv2_plugin = slv2_plugins_get_by_uri(_slv2_plugins, plugin_uri); slv2_value_free(plugin_uri); #endif + if (_type == Internal) + set_property("doap:name", Raul::Atom(uri.substr(uri.find_last_of("#") + 1).c_str())); } |