summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/src')
-rw-r--r--plugins/MirLua/src/m_chat.cpp2
-rw-r--r--plugins/MirLua/src/m_clist.cpp2
-rw-r--r--plugins/MirLua/src/m_core.cpp2
-rw-r--r--plugins/MirLua/src/m_database.cpp2
-rw-r--r--plugins/MirLua/src/m_database.h2
-rw-r--r--plugins/MirLua/src/m_genmenu.cpp2
-rw-r--r--plugins/MirLua/src/m_genmenu.h2
-rw-r--r--plugins/MirLua/src/m_hotkeys.cpp2
-rw-r--r--plugins/MirLua/src/m_http.cpp2
-rw-r--r--plugins/MirLua/src/m_icolib.cpp2
-rw-r--r--plugins/MirLua/src/m_json.cpp2
-rw-r--r--plugins/MirLua/src/m_json.h2
-rw-r--r--plugins/MirLua/src/m_message.cpp2
-rw-r--r--plugins/MirLua/src/m_options.cpp2
-rw-r--r--plugins/MirLua/src/m_protocols.cpp2
-rw-r--r--plugins/MirLua/src/m_protocols.h2
-rw-r--r--plugins/MirLua/src/m_sounds.cpp2
-rw-r--r--plugins/MirLua/src/m_srmm.cpp2
-rw-r--r--plugins/MirLua/src/main.cpp2
-rw-r--r--plugins/MirLua/src/mlua.cpp2
-rw-r--r--plugins/MirLua/src/mlua.h2
-rw-r--r--plugins/MirLua/src/mlua_environment.cpp2
-rw-r--r--plugins/MirLua/src/mlua_environment.h2
-rw-r--r--plugins/MirLua/src/mlua_icons.cpp2
-rw-r--r--plugins/MirLua/src/mlua_metatable.h2
-rw-r--r--plugins/MirLua/src/mlua_module_loader.cpp2
-rw-r--r--plugins/MirLua/src/mlua_module_loader.h2
-rw-r--r--plugins/MirLua/src/mlua_options.cpp2
-rw-r--r--plugins/MirLua/src/mlua_options.h2
-rw-r--r--plugins/MirLua/src/mlua_script.cpp2
-rw-r--r--plugins/MirLua/src/mlua_script.h2
-rw-r--r--plugins/MirLua/src/mlua_script_loader.cpp2
-rw-r--r--plugins/MirLua/src/mlua_script_loader.h2
-rw-r--r--plugins/MirLua/src/mlua_utils.cpp2
-rw-r--r--plugins/MirLua/src/resource.h2
-rw-r--r--plugins/MirLua/src/stdafx.cxx2
-rw-r--r--plugins/MirLua/src/stdafx.h2
-rw-r--r--plugins/MirLua/src/version.h2
38 files changed, 38 insertions, 38 deletions
diff --git a/plugins/MirLua/src/m_chat.cpp b/plugins/MirLua/src/m_chat.cpp
index 162b6acd5f..ed57b7b9de 100644
--- a/plugins/MirLua/src/m_chat.cpp
+++ b/plugins/MirLua/src/m_chat.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
static luaL_Reg chatApi[] =
{
diff --git a/plugins/MirLua/src/m_clist.cpp b/plugins/MirLua/src/m_clist.cpp
index ca71ac05be..cc32c188db 100644
--- a/plugins/MirLua/src/m_clist.cpp
+++ b/plugins/MirLua/src/m_clist.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
static int clist_AddMainMenuRoot(lua_State *L)
{
diff --git a/plugins/MirLua/src/m_core.cpp b/plugins/MirLua/src/m_core.cpp
index 95cfe610c4..c57595ffef 100644
--- a/plugins/MirLua/src/m_core.cpp
+++ b/plugins/MirLua/src/m_core.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
static int core_CreateHookableEvent(lua_State *L)
{
diff --git a/plugins/MirLua/src/m_database.cpp b/plugins/MirLua/src/m_database.cpp
index 2cb93f47da..ed6528b7c4 100644
--- a/plugins/MirLua/src/m_database.cpp
+++ b/plugins/MirLua/src/m_database.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
void luaM_pushdbvt(lua_State *L, const DBVARIANT &value)
{
diff --git a/plugins/MirLua/src/m_database.h b/plugins/MirLua/src/m_database.h
index 85574e47ef..73ba76f28c 100644
--- a/plugins/MirLua/src/m_database.h
+++ b/plugins/MirLua/src/m_database.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_M_DATABASE_H_
+#ifndef _LUA_M_DATABASE_H_
#define _LUA_M_DATABASE_H_
#include <m_database.h>
diff --git a/plugins/MirLua/src/m_genmenu.cpp b/plugins/MirLua/src/m_genmenu.cpp
index acad80bafb..e84f792a28 100644
--- a/plugins/MirLua/src/m_genmenu.cpp
+++ b/plugins/MirLua/src/m_genmenu.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
void MakeMenuItem(lua_State *L, CMenuItem &mi)
{
diff --git a/plugins/MirLua/src/m_genmenu.h b/plugins/MirLua/src/m_genmenu.h
index 1745bc63a0..b368627dc8 100644
--- a/plugins/MirLua/src/m_genmenu.h
+++ b/plugins/MirLua/src/m_genmenu.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_M_GENMENU_H_
+#ifndef _LUA_M_GENMENU_H_
#define _LUA_M_GENMENU_H_
#include <m_genmenu.h>
diff --git a/plugins/MirLua/src/m_hotkeys.cpp b/plugins/MirLua/src/m_hotkeys.cpp
index 88706134b8..f6041b504e 100644
--- a/plugins/MirLua/src/m_hotkeys.cpp
+++ b/plugins/MirLua/src/m_hotkeys.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
void MakeHotkey(lua_State *L, HOTKEYDESC &hk)
{
diff --git a/plugins/MirLua/src/m_http.cpp b/plugins/MirLua/src/m_http.cpp
index f61884b25b..e1aece0e12 100644
--- a/plugins/MirLua/src/m_http.cpp
+++ b/plugins/MirLua/src/m_http.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
/***********************************************/
diff --git a/plugins/MirLua/src/m_icolib.cpp b/plugins/MirLua/src/m_icolib.cpp
index b8dae7e103..f89e7a6dee 100644
--- a/plugins/MirLua/src/m_icolib.cpp
+++ b/plugins/MirLua/src/m_icolib.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
static void MakeSKINICONDESC(lua_State *L, SKINICONDESC &sid)
{
diff --git a/plugins/MirLua/src/m_json.cpp b/plugins/MirLua/src/m_json.cpp
index 88795b89d3..60f75411e9 100644
--- a/plugins/MirLua/src/m_json.cpp
+++ b/plugins/MirLua/src/m_json.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
static void lua2json(lua_State *L, JSONNode &node)
{
diff --git a/plugins/MirLua/src/m_json.h b/plugins/MirLua/src/m_json.h
index 36da0c27a8..bb3a2e1568 100644
--- a/plugins/MirLua/src/m_json.h
+++ b/plugins/MirLua/src/m_json.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_M_JSON_H_
+#ifndef _LUA_M_JSON_H_
#define _LUA_M_JSON_H_
#include <m_json.h>
diff --git a/plugins/MirLua/src/m_message.cpp b/plugins/MirLua/src/m_message.cpp
index 653ce4f2cc..c02adb0478 100644
--- a/plugins/MirLua/src/m_message.cpp
+++ b/plugins/MirLua/src/m_message.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
static int message_Paste(lua_State *L)
{
diff --git a/plugins/MirLua/src/m_options.cpp b/plugins/MirLua/src/m_options.cpp
index 1cb613be02..5e548aeeb6 100644
--- a/plugins/MirLua/src/m_options.cpp
+++ b/plugins/MirLua/src/m_options.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
class CMLuaScriptOptionPage : public CDlgBase
{
diff --git a/plugins/MirLua/src/m_protocols.cpp b/plugins/MirLua/src/m_protocols.cpp
index 5c82eba300..f4ea022175 100644
--- a/plugins/MirLua/src/m_protocols.cpp
+++ b/plugins/MirLua/src/m_protocols.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
HANDLE hRecvMessage = nullptr;
diff --git a/plugins/MirLua/src/m_protocols.h b/plugins/MirLua/src/m_protocols.h
index 42eaf6add6..b80d38023b 100644
--- a/plugins/MirLua/src/m_protocols.h
+++ b/plugins/MirLua/src/m_protocols.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_M_PROTOCOLS_H_
+#ifndef _LUA_M_PROTOCOLS_H_
#define _LUA_M_PROTOCOLS_H_
#define MLUA_PROTOCOLS "m_protocols"
diff --git a/plugins/MirLua/src/m_sounds.cpp b/plugins/MirLua/src/m_sounds.cpp
index 62ae176b67..cd9a089ce4 100644
--- a/plugins/MirLua/src/m_sounds.cpp
+++ b/plugins/MirLua/src/m_sounds.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
static int lua_AddSound(lua_State *L)
{
diff --git a/plugins/MirLua/src/m_srmm.cpp b/plugins/MirLua/src/m_srmm.cpp
index 948bb523a7..cd1562fe61 100644
--- a/plugins/MirLua/src/m_srmm.cpp
+++ b/plugins/MirLua/src/m_srmm.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
#define MT_BBBUTTON "BBButton"
diff --git a/plugins/MirLua/src/main.cpp b/plugins/MirLua/src/main.cpp
index e4a506d5ca..1795c56878 100644
--- a/plugins/MirLua/src/main.cpp
+++ b/plugins/MirLua/src/main.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
int hLangpack;
diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp
index 8d5f9444a2..dba1cb607a 100644
--- a/plugins/MirLua/src/mlua.cpp
+++ b/plugins/MirLua/src/mlua.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
int hMLuaLangpack;
diff --git a/plugins/MirLua/src/mlua.h b/plugins/MirLua/src/mlua.h
index bd80a16f54..06f4fe2287 100644
--- a/plugins/MirLua/src/mlua.h
+++ b/plugins/MirLua/src/mlua.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_CORE_H_
+#ifndef _LUA_CORE_H_
#define _LUA_CORE_H_
struct HandleRefParam
diff --git a/plugins/MirLua/src/mlua_environment.cpp b/plugins/MirLua/src/mlua_environment.cpp
index 29866b0b17..9c28645274 100644
--- a/plugins/MirLua/src/mlua_environment.cpp
+++ b/plugins/MirLua/src/mlua_environment.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
#define MT_ENVIRONMENT "ENVIRONMENT"
diff --git a/plugins/MirLua/src/mlua_environment.h b/plugins/MirLua/src/mlua_environment.h
index 5ad65e2d2b..eb72bf42b8 100644
--- a/plugins/MirLua/src/mlua_environment.h
+++ b/plugins/MirLua/src/mlua_environment.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_ENVIRONMENT_H_
+#ifndef _LUA_ENVIRONMENT_H_
#define _LUA_ENVIRONMENT_H_
class CMLuaEnvironment
diff --git a/plugins/MirLua/src/mlua_icons.cpp b/plugins/MirLua/src/mlua_icons.cpp
index 91d4d9dc5d..4b13f8c52e 100644
--- a/plugins/MirLua/src/mlua_icons.cpp
+++ b/plugins/MirLua/src/mlua_icons.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
IconItem Icons[] =
{
diff --git a/plugins/MirLua/src/mlua_metatable.h b/plugins/MirLua/src/mlua_metatable.h
index 43b67d8965..6b4f916668 100644
--- a/plugins/MirLua/src/mlua_metatable.h
+++ b/plugins/MirLua/src/mlua_metatable.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_METATABLE_H_
+#ifndef _LUA_METATABLE_H_
#define _LUA_METATABLE_H_
#include <map>
diff --git a/plugins/MirLua/src/mlua_module_loader.cpp b/plugins/MirLua/src/mlua_module_loader.cpp
index d877304de5..c28e6edaeb 100644
--- a/plugins/MirLua/src/mlua_module_loader.cpp
+++ b/plugins/MirLua/src/mlua_module_loader.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
CMLuaModuleLoader::CMLuaModuleLoader(lua_State *L) : L(L)
{
diff --git a/plugins/MirLua/src/mlua_module_loader.h b/plugins/MirLua/src/mlua_module_loader.h
index b9dbba2371..123c05bf41 100644
--- a/plugins/MirLua/src/mlua_module_loader.h
+++ b/plugins/MirLua/src/mlua_module_loader.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_MODULE_LOADER_H_
+#ifndef _LUA_MODULE_LOADER_H_
#define _LUA_MODULE_LOADER_H_
class CMLuaModuleLoader
diff --git a/plugins/MirLua/src/mlua_options.cpp b/plugins/MirLua/src/mlua_options.cpp
index f9816df2ee..6a2dbd669b 100644
--- a/plugins/MirLua/src/mlua_options.cpp
+++ b/plugins/MirLua/src/mlua_options.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
CCtrlScriptList::CCtrlScriptList(CDlgBase* dlg, int ctrlId)
: CCtrlListView(dlg, ctrlId)
diff --git a/plugins/MirLua/src/mlua_options.h b/plugins/MirLua/src/mlua_options.h
index 468a496bc9..5d36188604 100644
--- a/plugins/MirLua/src/mlua_options.h
+++ b/plugins/MirLua/src/mlua_options.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_OPTIONS_H_
+#ifndef _LUA_OPTIONS_H_
#define _LUA_OPTIONS_H_
#include <m_gui.h>
diff --git a/plugins/MirLua/src/mlua_script.cpp b/plugins/MirLua/src/mlua_script.cpp
index 2c32175065..79e52b9967 100644
--- a/plugins/MirLua/src/mlua_script.cpp
+++ b/plugins/MirLua/src/mlua_script.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
#define MT_SCRIPT "SCRIPT"
diff --git a/plugins/MirLua/src/mlua_script.h b/plugins/MirLua/src/mlua_script.h
index 327bd8a37b..9a1ec98390 100644
--- a/plugins/MirLua/src/mlua_script.h
+++ b/plugins/MirLua/src/mlua_script.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_SCRIPT_H_
+#ifndef _LUA_SCRIPT_H_
#define _LUA_SCRIPT_H_
class CMLuaScript : public CMLuaEnvironment
diff --git a/plugins/MirLua/src/mlua_script_loader.cpp b/plugins/MirLua/src/mlua_script_loader.cpp
index 17d149f7ed..9f9386a95e 100644
--- a/plugins/MirLua/src/mlua_script_loader.cpp
+++ b/plugins/MirLua/src/mlua_script_loader.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
CMLuaScriptLoader::CMLuaScriptLoader(lua_State *L) : L(L)
{
diff --git a/plugins/MirLua/src/mlua_script_loader.h b/plugins/MirLua/src/mlua_script_loader.h
index f213a467bc..e455793adf 100644
--- a/plugins/MirLua/src/mlua_script_loader.h
+++ b/plugins/MirLua/src/mlua_script_loader.h
@@ -1,4 +1,4 @@
-#ifndef _LUA_SCRIPT_LOADER_H_
+#ifndef _LUA_SCRIPT_LOADER_H_
#define _LUA_SCRIPT_LOADER_H_
class CMLuaScriptLoader
diff --git a/plugins/MirLua/src/mlua_utils.cpp b/plugins/MirLua/src/mlua_utils.cpp
index a0ae59999b..9275b74a7f 100644
--- a/plugins/MirLua/src/mlua_utils.cpp
+++ b/plugins/MirLua/src/mlua_utils.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
void Log(const char *format, ...)
{
diff --git a/plugins/MirLua/src/resource.h b/plugins/MirLua/src/resource.h
index 4309f995fd..b83d89d368 100644
--- a/plugins/MirLua/src/resource.h
+++ b/plugins/MirLua/src/resource.h
@@ -1,4 +1,4 @@
-//{{NO_DEPENDENCIES}}
+//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by D:\Projects\MirandaNG\plugins\MirLua\res\resource.rc
//
diff --git a/plugins/MirLua/src/stdafx.cxx b/plugins/MirLua/src/stdafx.cxx
index d1303f3984..fd4f341c7b 100644
--- a/plugins/MirLua/src/stdafx.cxx
+++ b/plugins/MirLua/src/stdafx.cxx
@@ -1 +1 @@
-#include "stdafx.h"
+#include "stdafx.h"
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h
index 104ea1c80d..92ae2a9d46 100644
--- a/plugins/MirLua/src/stdafx.h
+++ b/plugins/MirLua/src/stdafx.h
@@ -1,4 +1,4 @@
-#ifndef _COMMON_H_
+#ifndef _COMMON_H_
#define _COMMON_H_
#include <windows.h>
diff --git a/plugins/MirLua/src/version.h b/plugins/MirLua/src/version.h
index 48f7aca1f8..1525666f2a 100644
--- a/plugins/MirLua/src/version.h
+++ b/plugins/MirLua/src/version.h
@@ -1,4 +1,4 @@
-#define __MAJOR_VERSION 0
+#define __MAJOR_VERSION 0
#define __MINOR_VERSION 11
#define __RELEASE_NUM 8
#define __BUILD_NUM 5