summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/environment.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-05-22 12:15:23 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-05-22 12:15:23 +0300
commita53727dda0389031085752f0f15ebbbcf4adf5b3 (patch)
treece9e4cdeea5fd4f42f14966675eb8ca50e0efe76 /plugins/MirLua/src/environment.cpp
parent0dd1aab20bd0aa63f48b8ce7d63f020d84b45c65 (diff)
name resolution conflict
Diffstat (limited to 'plugins/MirLua/src/environment.cpp')
-rw-r--r--plugins/MirLua/src/environment.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/MirLua/src/environment.cpp b/plugins/MirLua/src/environment.cpp
index ca04746b44..3127edee82 100644
--- a/plugins/MirLua/src/environment.cpp
+++ b/plugins/MirLua/src/environment.cpp
@@ -4,8 +4,9 @@
extern PLUGININFOEX pluginInfoEx;
-CMLuaEnvironment::CMLuaEnvironment(lua_State*)
- : CMPluginBase(nullptr, pluginInfoEx)
+CMLuaEnvironment::CMLuaEnvironment(lua_State *_l) :
+ CMPluginBase(nullptr, pluginInfoEx),
+ L(_l)
{
MUUID muidLast = MIID_LAST;
m_hLang = GetPluginLangId(muidLast, 0);