diff options
author | David Robillard <d@drobilla.net> | 2020-08-01 14:28:50 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-02 01:48:48 +0200 |
commit | 6a1ce7d1ee5e6f20aa011fe994341d9d79ac35ea (patch) | |
tree | e541fcd73c05f2338840f1fcfa36dcb6a0d8895d /src/client | |
parent | 7fe8260c6c0a53fdc9ba04130c577122402a82ec (diff) | |
download | ingen-6a1ce7d1ee5e6f20aa011fe994341d9d79ac35ea.tar.gz ingen-6a1ce7d1ee5e6f20aa011fe994341d9d79ac35ea.tar.bz2 ingen-6a1ce7d1ee5e6f20aa011fe994341d9d79ac35ea.zip |
Make member functions const or static where possible
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/PluginModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/PluginModel.cpp b/src/client/PluginModel.cpp index 744bdb7d..517bed70 100644 --- a/src/client/PluginModel.cpp +++ b/src/client/PluginModel.cpp @@ -274,7 +274,7 @@ link(const std::string& addr, bool html) } std::string -PluginModel::get_documentation(const LilvNode* subject, bool html) const +PluginModel::get_documentation(const LilvNode* subject, bool html) { std::string doc; |