diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-02-15 17:09:42 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-02-15 17:09:42 +0000 |
commit | 06c13fcc7c6c9b7b8448e550568c5993dbd96628 (patch) | |
tree | 8ba39163ab86765cfeed6b8d73d528ee6dd9bd33 /plugins/MirLua/src/m_sounds.cpp | |
parent | a7967e3364a0b5528433de65cfbb743c57625e72 (diff) |
MirLua: returned ability to reload single script
git-svn-id: http://svn.miranda-ng.org/main/trunk@16282 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_sounds.cpp')
-rw-r--r-- | plugins/MirLua/src/m_sounds.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/MirLua/src/m_sounds.cpp b/plugins/MirLua/src/m_sounds.cpp index de2a82c23f..3575ccf546 100644 --- a/plugins/MirLua/src/m_sounds.cpp +++ b/plugins/MirLua/src/m_sounds.cpp @@ -14,7 +14,9 @@ static int lua_AddSound(lua_State *L) ssd.ptszSection = section;
ssd.ptszDefaultFile = filePath;
- INT_PTR res = ::CallService("Skin/Sounds/AddNew", hLangpack, (LPARAM)&ssd);
+ int hScriptLangpack = CMLuaScript::GetScriptIdFromEnviroment(L);
+
+ INT_PTR res = CallService("Skin/Sounds/AddNew", hScriptLangpack, (LPARAM)&ssd);
lua_pushboolean(L, res == 0);
return 1;
@@ -24,7 +26,7 @@ static int lua_PlaySound(lua_State *L) {
const char *name = luaL_checkstring(L, 1);
- INT_PTR res = ::SkinPlaySound(name);
+ INT_PTR res = SkinPlaySound(name);
lua_pushboolean(L, res == 0);
return 1;
@@ -34,7 +36,7 @@ static int lua_PlayFile(lua_State *L) {
ptrT filePath(mir_utf8decodeT(luaL_checkstring(L, 1)));
- INT_PTR res = ::SkinPlaySoundFile(filePath);
+ INT_PTR res = SkinPlaySoundFile(filePath);
lua_pushboolean(L, res == 0);
return 1;
|