From 263295a1ae1897a16363a74e4a0f3bf6ed398c31 Mon Sep 17 00:00:00 2001 From: prozacx Date: Sun, 3 Apr 2005 05:40:15 +0000 Subject: [PATCH] Removed path arg in LoadModule functions, it was not being used git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@70 726aef4b-f618-498e-8847-2d620e286838 --- Modules.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules.h b/Modules.h index 764b16ba..abe23eb4 100644 --- a/Modules.h +++ b/Modules.h @@ -166,9 +166,9 @@ public: virtual bool OnChanNotice(const CNick& Nick, const CChan& Channel, string& sMessage); CModule* FindModule(const string& sModule); - bool LoadModule(const string& sModule, const string& sArgs, CUser* pUser, const string& sPath, string& sRetMsg); + bool LoadModule(const string& sModule, const string& sArgs, CUser* pUser, string& sRetMsg); bool UnloadModule(const string& sModule, string& sRetMsg); - bool ReloadModule(const string& sModule, const string& sArgs, CUser* pUser, const string& sPath, string& sRetMsg); + bool ReloadModule(const string& sModule, const string& sArgs, CUser* pUser, string& sRetMsg); }; #endif // !_MODULES_H