diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-09-30 19:28:38 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-09-30 19:28:38 -0400 |
| commit | 998f3f7dfa79a742575ee118ffc629e542dd9790 (patch) | |
| tree | 76243828f1192c24bc7129b4d99c312e8279172c /pluginmanager.cpp | |
| parent | c8bef7267b0ec3b36167b679263bbfd4834a5b88 (diff) | |
Fix RepoPlugin::IsViewOnly
Diffstat (limited to 'pluginmanager.cpp')
| -rw-r--r-- | pluginmanager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pluginmanager.cpp b/pluginmanager.cpp index d9cd4850..79eb5b58 100644 --- a/pluginmanager.cpp +++ b/pluginmanager.cpp @@ -138,9 +138,10 @@ string RepoPlugin::GetCommit() const RETURN_STRING(BNPluginGetCommit(m_object)); } + bool RepoPlugin::IsViewOnly() const { - BNPluginGetViewOnly(m_object); + return BNPluginGetViewOnly(m_object); } |
