From f65d84596bf4b8f26d0ce57e3952d53ba82348db Mon Sep 17 00:00:00 2001 From: robocop Date: Sat, 11 Jun 2011 06:12:53 +0000 Subject: [PATCH] Misc. --- src/include/firebird/Plugin.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/firebird/Plugin.h b/src/include/firebird/Plugin.h index e542a23a19..a74d3184b6 100644 --- a/src/include/firebird/Plugin.h +++ b/src/include/firebird/Plugin.h @@ -172,10 +172,10 @@ public: virtual void FB_CARG registerPluginFactory(unsigned int interfaceType, const char* defaultName, IPluginFactory* factory) = 0; // Sets cleanup for plugin module - // Pay attention - this should be called at plugin-regsiter time! + // Pay attention - this should be called at plugin-register time! // Only at this moment manager knows, which module sets his cleanup virtual void FB_CARG registerModule(IPluginModule* cleanup) = 0; - // Remove registered before cleanup routine. + // Remove registered module before cleanup routine. // This method must be called by module which detects that it's unloaded, // but not notified prior to it by PluginManager via IPluginModule. virtual void FB_CARG unregisterModule(IPluginModule* cleanup) = 0;