diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-21 21:39:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-21 21:39:03 +0000 |
commit | 3a0c7938465596cc6e3bf7938344fe72466a5d1a (patch) | |
tree | 11763c2383679bf0141dedd1fa078a357420afc1 | |
parent | 939b95abc8f35bb5e44cc9fada19066375bee83b (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14314 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/MirLua/src/mlua.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp index 5e720dba8e..bf83c8f2c0 100644 --- a/plugins/MirLua/src/mlua.cpp +++ b/plugins/MirLua/src/mlua.cpp @@ -24,7 +24,8 @@ void CMLua::Load() LoadMirandaModules();
- hScriptsLangpack = GetPluginLangId(MIID_LAST, 0);
+ MUUID last = MIID_LAST;
+ hScriptsLangpack = GetPluginLangId(last, 0);
CLuaLoader loader(this);
loader.LoadScripts();
|