diff options
author | David Robillard <d@drobilla.net> | 2014-01-04 04:37:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-01-04 04:37:14 +0000 |
commit | 39fd0894a1402f23ce4b5243ec595764aa11625c (patch) | |
tree | cb08507d5cf0193d907d0514dbd407b297d866ad /ingen/client | |
parent | bcc0b2d27797d07bf48de1b3a03dea7f878cb2b6 (diff) | |
download | ingen-39fd0894a1402f23ce4b5243ec595764aa11625c.tar.gz ingen-39fd0894a1402f23ce4b5243ec595764aa11625c.tar.bz2 ingen-39fd0894a1402f23ce4b5243ec595764aa11625c.zip |
Fix documentation pane.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5256 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/client')
-rw-r--r-- | ingen/client/PluginModel.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ingen/client/PluginModel.hpp b/ingen/client/PluginModel.hpp index 7f409f02..9c4e6b41 100644 --- a/ingen/client/PluginModel.hpp +++ b/ingen/client/PluginModel.hpp @@ -81,7 +81,7 @@ public: static std::string get_lv2_icon_path(const LilvPlugin* plugin); std::string documentation(bool html) const; - std::string port_documentation(uint32_t index) const; + std::string port_documentation(uint32_t index, bool html) const; static void set_rdf_world(Sord::World& world) { _rdf_world = &world; @@ -98,6 +98,8 @@ protected: void set(SPtr<PluginModel> p); private: + std::string get_documentation(const LilvNode* subject, bool html) const; + Type _type; static LilvWorld* _lilv_world; |