diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-02-17 12:00:00 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-02-17 12:00:00 +0000 |
commit | 9990ff21f9acacc42015e43609bf26cfa2104bb1 (patch) | |
tree | e8838b6856a1544a9e4d36d469b1d2806cac66fb /plugins/MirLua/src/mlua_script.h | |
parent | 2c7da3b79ebbd1833d1edfdef52d14c2ef2547eb (diff) |
MirLua: fixed getting script eviroment
git-svn-id: http://svn.miranda-ng.org/main/trunk@16290 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua_script.h')
-rw-r--r-- | plugins/MirLua/src/mlua_script.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MirLua/src/mlua_script.h b/plugins/MirLua/src/mlua_script.h index 68b382921e..78fa34bf5b 100644 --- a/plugins/MirLua/src/mlua_script.h +++ b/plugins/MirLua/src/mlua_script.h @@ -24,9 +24,9 @@ public: CMLuaScript(lua_State *L, const TCHAR *path);
~CMLuaScript();
- static bool GetScriptEnviroment(lua_State *L, int n = 1);
- static CMLuaScript* GetScriptFromEnviroment(lua_State *L, int n = 1);
- static int GetScriptIdFromEnviroment(lua_State *L, int n = 1);
+ static bool GetScriptEnviroment(lua_State *L);
+ static CMLuaScript* GetScriptFromEnviroment(lua_State *L);
+ static int GetScriptIdFromEnviroment(lua_State *L);
const char* GetModuleName() const;
|