From fcde48640fbacf3c42294956a39fdfd65b79d42b Mon Sep 17 00:00:00 2001 From: whh8b <whh8b@git.zephyr-software.com> Date: Fri, 18 Dec 2015 08:51:11 +0000 Subject: [PATCH] Rename PlopAddress to AddressDollop. --- include/plugin_man.h | 2 +- src/plugin_man.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/plugin_man.h b/include/plugin_man.h index c98faf428..c167f0b53 100644 --- a/include/plugin_man.h +++ b/include/plugin_man.h @@ -42,7 +42,7 @@ class ZiprPluginManager_t : public ZiprPluginInterface_t virtual bool DoesPluginPlop(libIRDB::Instruction_t*,DLFunctionHandle_t&); - virtual bool DoesPluginPlace(const RangeAddress_t &, const Dollop_t &, Range_t &, DLFunctionHandle_t &); + virtual bool DoesPluginAddress(const Dollop_t *, Range_t &, DLFunctionHandle_t &); private: void open_plugins diff --git a/src/plugin_man.cpp b/src/plugin_man.cpp index 5e636b34d..7b39dae2d 100644 --- a/src/plugin_man.cpp +++ b/src/plugin_man.cpp @@ -81,13 +81,13 @@ void ZiprPluginManager_t::CallbackLinkingEnd() dispatch_to(CallbackLinkingEnd); } -bool ZiprPluginManager_t::DoesPluginPlace(const RangeAddress_t &jump, const Dollop_t &dollop, Range_t &place, DLFunctionHandle_t &placer) +bool ZiprPluginManager_t::DoesPluginAddress(const Dollop_t *dollop, Range_t &place, DLFunctionHandle_t &placer) { DLFunctionHandleSet_t::iterator it=m_handleList.begin(); for(m_handleList.begin();it!=m_handleList.end();++it) { ZiprPluginInterface_t* zpi=(ZiprPluginInterface_t*)*it; - if (Must == zpi->PlopAddress(jump, dollop, place)) + if (Must == zpi->AddressDollop(dollop, place)) { placer = zpi; return true; -- GitLab