diff options
author | Kirill Volinsky <Mataes2007@gmail.com> | 2017-12-06 13:00:20 +0300 |
---|---|---|
committer | Kirill Volinsky <Mataes2007@gmail.com> | 2017-12-06 13:09:18 +0300 |
commit | 62202ed10617927d5429bc59898e12a366abe744 (patch) | |
tree | 4960bf1241b59cf009118da6cdab87294b1a95e1 /plugins/MirLua/src | |
parent | b30e7ca1c642a3f88659a4346832e653407e1c0f (diff) |
convert all files exept curl and new_gpg to utf-8 BOM
Diffstat (limited to 'plugins/MirLua/src')
38 files changed, 38 insertions, 38 deletions
diff --git a/plugins/MirLua/src/m_chat.cpp b/plugins/MirLua/src/m_chat.cpp index ed57b7b9de..162b6acd5f 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 cc32c188db..ca71ac05be 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 c57595ffef..95cfe610c4 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 ed6528b7c4..2cb93f47da 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 73ba76f28c..85574e47ef 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 e84f792a28..acad80bafb 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 b368627dc8..1745bc63a0 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 f6041b504e..88706134b8 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 e1aece0e12..f61884b25b 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 f89e7a6dee..b8dae7e103 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 60f75411e9..88795b89d3 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 bb3a2e1568..36da0c27a8 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 c02adb0478..653ce4f2cc 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 5e548aeeb6..1cb613be02 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 f4ea022175..5c82eba300 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 b80d38023b..42eaf6add6 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 cd9a089ce4..62ae176b67 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 cd1562fe61..948bb523a7 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 1795c56878..e4a506d5ca 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 dba1cb607a..8d5f9444a2 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 06f4fe2287..bd80a16f54 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 9c28645274..29866b0b17 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 eb72bf42b8..5ad65e2d2b 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 4b13f8c52e..91d4d9dc5d 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 6b4f916668..43b67d8965 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 c28e6edaeb..d877304de5 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 123c05bf41..b9dbba2371 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 6a2dbd669b..f9816df2ee 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 5d36188604..468a496bc9 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 79e52b9967..2c32175065 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 9a1ec98390..327bd8a37b 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 9f9386a95e..17d149f7ed 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 e455793adf..f213a467bc 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 9275b74a7f..a0ae59999b 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 b83d89d368..4309f995fd 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 fd4f341c7b..d1303f3984 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 92ae2a9d46..104ea1c80d 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 1525666f2a..48f7aca1f8 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
|