summaryrefslogtreecommitdiff
path: root/pluginmanager.cpp
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2017-03-22 13:22:16 -0400
committerPeter LaFosse <peter@vector35.com>2017-03-22 13:22:16 -0400
commit1e8e975ed8100c7a6186e8b27833a067ceaf05be (patch)
tree75770b172689110532e25a8959cc5d15bd6292e5 /pluginmanager.cpp
parentc3e09a578a4beca8fc63b5cdfd1bf3f6a4d1451b (diff)
Modifications to support partial uninstallation
Diffstat (limited to 'pluginmanager.cpp')
-rw-r--r--pluginmanager.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/pluginmanager.cpp b/pluginmanager.cpp
index 24f6f09f..ab2b23ee 100644
--- a/pluginmanager.cpp
+++ b/pluginmanager.cpp
@@ -23,7 +23,9 @@ RepoPlugin::RepoPlugin(const string& path,
const string& name,
const vector<PluginType>& pluginTypes,
const string& url,
- const string& version)
+ const string& version,
+ const string& repoPath,
+ const string& gitModulesPath)
{
m_object = BNCreatePlugin(path.c_str(),
installed,
@@ -39,7 +41,9 @@ RepoPlugin::RepoPlugin(const string& path,
&pluginTypes[0],
pluginTypes.size(),
url.c_str(),
- version.c_str());
+ version.c_str(),
+ repoPath.c_str(),
+ gitModulesPath.c_str());
}
RepoPlugin::RepoPlugin(BNRepoPlugin* plugin)