BASE: PLUGINS: Rename plugin matching helpers

- give*From* -> get*From*
This commit is contained in:
aryanrawlani28 2020-09-30 14:05:56 +05:30 committed by Eugene Sandulenko
parent 02730ee176
commit c48719404a
11 changed files with 14 additions and 14 deletions

View file

@ -347,7 +347,7 @@ public:
*
* @return A plugin of type METAENGINE.
*/
Plugin *giveMetaEngineFromEngine(const Plugin *plugin);
Plugin *getMetaEngineFromEngine(const Plugin *plugin);
/**
* A method which takes in a plugin of type METAENGINE,
@ -359,7 +359,7 @@ public:
*
* @return A plugin of type ENGINE.
*/
Plugin *giveEngineFromMetaEngine(const Plugin *plugin);
Plugin *getEngineFromMetaEngine(const Plugin *plugin);
// Functions used by the uncached PluginManager
virtual void init() {}