From 32089106fa10eba08e946693cb2939a4ab293f77 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Mon, 4 Apr 2016 09:44:12 +0000 Subject: MirLua: - no need to copy pointer data in MT - project cleanup - version bump git-svn-id: http://svn.miranda-ng.org/main/trunk@16584 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirLua/src/mlua_script_loader.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/MirLua/src/mlua_script_loader.cpp') diff --git a/plugins/MirLua/src/mlua_script_loader.cpp b/plugins/MirLua/src/mlua_script_loader.cpp index 13dc5bea99..ddecbad547 100644 --- a/plugins/MirLua/src/mlua_script_loader.cpp +++ b/plugins/MirLua/src/mlua_script_loader.cpp @@ -1,10 +1,10 @@ #include "stdafx.h" -CLuaScriptLoader::CLuaScriptLoader(lua_State *L) : L(L) +CMLuaScriptLoader::CMLuaScriptLoader(lua_State *L) : L(L) { } -void CLuaScriptLoader::LoadScript(const TCHAR *scriptDir, const TCHAR *file) +void CMLuaScriptLoader::LoadScript(const TCHAR *scriptDir, const TCHAR *file) { TCHAR fullPath[MAX_PATH], path[MAX_PATH]; mir_sntprintf(fullPath, _T("%s\\%s"), scriptDir, file); @@ -23,7 +23,7 @@ void CLuaScriptLoader::LoadScript(const TCHAR *scriptDir, const TCHAR *file) Log(_T("%s:OK"), path); } -void CLuaScriptLoader::LoadScripts() +void CMLuaScriptLoader::LoadScripts() { TCHAR scriptDir[MAX_PATH]; FoldersGetCustomPathT(g_hScriptsFolder, scriptDir, _countof(scriptDir), VARST(MIRLUA_PATHT)); @@ -47,7 +47,7 @@ void CLuaScriptLoader::LoadScripts() } } -void CLuaScriptLoader::Load(lua_State *L) +void CMLuaScriptLoader::Load(lua_State *L) { - CLuaScriptLoader(L).LoadScripts(); + CMLuaScriptLoader(L).LoadScripts(); } \ No newline at end of file -- cgit v1.2.3