summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_module_loader.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-04-04 09:44:12 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-04-04 09:44:12 +0000
commit32089106fa10eba08e946693cb2939a4ab293f77 (patch)
tree102d714e16eb4d5c8da2a6a34d497ad10724c35f /plugins/MirLua/src/mlua_module_loader.h
parente1110157f8c2989a58aa12ddeef91669525d188f (diff)
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
Diffstat (limited to 'plugins/MirLua/src/mlua_module_loader.h')
-rw-r--r--plugins/MirLua/src/mlua_module_loader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirLua/src/mlua_module_loader.h b/plugins/MirLua/src/mlua_module_loader.h
index 6ce4e16bd8..123c05bf41 100644
--- a/plugins/MirLua/src/mlua_module_loader.h
+++ b/plugins/MirLua/src/mlua_module_loader.h
@@ -1,12 +1,12 @@
#ifndef _LUA_MODULE_LOADER_H_
#define _LUA_MODULE_LOADER_H_
-class CLuaModuleLoader
+class CMLuaModuleLoader
{
private:
lua_State *L;
- CLuaModuleLoader(lua_State *L);
+ CMLuaModuleLoader(lua_State *L);
void Load(const char *name, lua_CFunction loader);
void Preload(const char *name, lua_CFunction loader);