commit 3ee5f701e7d7d90c16ade346d854af1120423532
parent c5af8d7f8d0d5750e919a8e717fe94543d70ffac
Author: cfillion <cfillion@users.noreply.github.com>
Date: Mon, 18 Jan 2016 16:08:42 -0500
another mild refactoring commit
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main.cpp b/src/main.cpp
@@ -65,7 +65,7 @@ extern "C" REAPER_PLUGIN_DLL_EXPORT int REAPER_PLUGIN_ENTRYPOINT(
reapack.init(instance, rec);
reapack.setupAction("REAPACK_SYNC", "ReaPack: Synchronize Packages",
- &reapack.syncAction, bind(&ReaPack::synchronize, reapack));
+ &reapack.syncAction, bind(&ReaPack::synchronizeAll, reapack));
reapack.setupAction("REAPACK_IMPORT",
bind(&ReaPack::importRemote, reapack));
diff --git a/src/reapack.cpp b/src/reapack.cpp
@@ -93,7 +93,7 @@ bool ReaPack::execActions(const int id, const int)
return true;
}
-void ReaPack::synchronize()
+void ReaPack::synchronizeAll()
{
const vector<Remote> &remotes = m_config->remotes()->getEnabled();
diff --git a/src/reapack.hpp b/src/reapack.hpp
@@ -46,7 +46,7 @@ public:
gaccel_register_t *action, const ActionCallback &);
bool execActions(const int id, const int);
- void synchronize();
+ void synchronizeAll();
void importRemote();
void manageRemotes();