From 62202ed10617927d5429bc59898e12a366abe744 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Wed, 6 Dec 2017 13:00:20 +0300 Subject: convert all files exept curl and new_gpg to utf-8 BOM --- plugins/YAMN/src/account.cpp | 2 +- plugins/YAMN/src/browser/badconnect.cpp | 2 +- plugins/YAMN/src/browser/browser.h | 2 +- plugins/YAMN/src/browser/mailbrowser.cpp | 2 +- plugins/YAMN/src/debug.cpp | 2 +- plugins/YAMN/src/debug.h | 2 +- plugins/YAMN/src/filterplugin.cpp | 2 +- plugins/YAMN/src/mails/decode.cpp | 2 +- plugins/YAMN/src/mails/decode.h | 2 +- plugins/YAMN/src/mails/mails.cpp | 2 +- plugins/YAMN/src/mails/mime.cpp | 2 +- plugins/YAMN/src/main.cpp | 2 +- plugins/YAMN/src/main.h | 2 +- plugins/YAMN/src/proto/netclient.h | 2 +- plugins/YAMN/src/proto/netlib.cpp | 2 +- plugins/YAMN/src/proto/netlib.h | 2 +- plugins/YAMN/src/proto/pop3/pop3.cpp | 2 +- plugins/YAMN/src/proto/pop3/pop3.h | 2 +- plugins/YAMN/src/proto/pop3/pop3comm.cpp | 2 +- plugins/YAMN/src/proto/pop3/pop3comm.h | 2 +- plugins/YAMN/src/proto/pop3/pop3opt.cpp | 2 +- plugins/YAMN/src/proto/pop3/pop3opt.h | 2 +- plugins/YAMN/src/protoplugin.cpp | 2 +- plugins/YAMN/src/resource.h | 2 +- plugins/YAMN/src/services.cpp | 2 +- plugins/YAMN/src/stdafx.cxx | 2 +- plugins/YAMN/src/stdafx.h | 2 +- plugins/YAMN/src/synchro.cpp | 2 +- plugins/YAMN/src/version.h | 2 +- plugins/YAMN/src/yamn.cpp | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) (limited to 'plugins/YAMN/src') diff --git a/plugins/YAMN/src/account.cpp b/plugins/YAMN/src/account.cpp index 0755276f7b..073eaeadf9 100644 --- a/plugins/YAMN/src/account.cpp +++ b/plugins/YAMN/src/account.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements manipulation with accounts * such as reading accounts from file, writing them to file, * finding account by name etc. diff --git a/plugins/YAMN/src/browser/badconnect.cpp b/plugins/YAMN/src/browser/badconnect.cpp index d66878578e..a66d146458 100644 --- a/plugins/YAMN/src/browser/badconnect.cpp +++ b/plugins/YAMN/src/browser/badconnect.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements window handling (connection error) * * (c) majvan 2002,2004 diff --git a/plugins/YAMN/src/browser/browser.h b/plugins/YAMN/src/browser/browser.h index 18ec0f385e..2e7c2c7104 100644 --- a/plugins/YAMN/src/browser/browser.h +++ b/plugins/YAMN/src/browser/browser.h @@ -1,4 +1,4 @@ -#ifndef __MAILBROWSER_H +#ifndef __MAILBROWSER_H #define __MAILBROWSER_H typedef struct MailBrowserWinParam diff --git a/plugins/YAMN/src/browser/mailbrowser.cpp b/plugins/YAMN/src/browser/mailbrowser.cpp index 58269b94af..9325ea61ed 100644 --- a/plugins/YAMN/src/browser/mailbrowser.cpp +++ b/plugins/YAMN/src/browser/mailbrowser.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements window handling (new mail) * * (c) majvan 2002-2004 diff --git a/plugins/YAMN/src/debug.cpp b/plugins/YAMN/src/debug.cpp index 0736b3d77d..4459d35edb 100644 --- a/plugins/YAMN/src/debug.cpp +++ b/plugins/YAMN/src/debug.cpp @@ -1,4 +1,4 @@ -/* +/* * YAMN plugin main file * Miranda homepage: http://miranda-icq.sourceforge.net/ * diff --git a/plugins/YAMN/src/debug.h b/plugins/YAMN/src/debug.h index d902d4c8b7..e9059292ed 100644 --- a/plugins/YAMN/src/debug.h +++ b/plugins/YAMN/src/debug.h @@ -1,4 +1,4 @@ -#ifndef __DEBUG_H +#ifndef __DEBUG_H #define __DEBUG_H #ifdef _DEBUG diff --git a/plugins/YAMN/src/filterplugin.cpp b/plugins/YAMN/src/filterplugin.cpp index 5b0020eb66..35df6729ba 100644 --- a/plugins/YAMN/src/filterplugin.cpp +++ b/plugins/YAMN/src/filterplugin.cpp @@ -1,4 +1,4 @@ -/* +/* * YAMN plugin export functions for filtering * * (c) majvan 2002-2004 diff --git a/plugins/YAMN/src/mails/decode.cpp b/plugins/YAMN/src/mails/decode.cpp index 6a767b7a17..f58961f66f 100644 --- a/plugins/YAMN/src/mails/decode.cpp +++ b/plugins/YAMN/src/mails/decode.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements decoding encoded MIME header in style * =?iso-8859-2?Q? "User using email in central Europe characters such as =E9" ?= * diff --git a/plugins/YAMN/src/mails/decode.h b/plugins/YAMN/src/mails/decode.h index 432efafb0b..9fdf0e895c 100644 --- a/plugins/YAMN/src/mails/decode.h +++ b/plugins/YAMN/src/mails/decode.h @@ -1,4 +1,4 @@ -#ifndef __DECODE_H +#ifndef __DECODE_H #define __DECODE_H #define DOTLINE(s) ((((s)[-2]=='\r') || ((s)[-2]=='\n')) && ((s)[-1]=='.') && (((s)[0]=='\r') || ((s)[0]=='\n') || ((s)[0]=='\0'))) // be careful, it's different to ESR's pop3.c ;-) diff --git a/plugins/YAMN/src/mails/mails.cpp b/plugins/YAMN/src/mails/mails.cpp index c8baf41422..28ba473e7b 100644 --- a/plugins/YAMN/src/mails/mails.cpp +++ b/plugins/YAMN/src/mails/mails.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements retrieving info from MIME header * * (c) majvan 2002-2004 diff --git a/plugins/YAMN/src/mails/mime.cpp b/plugins/YAMN/src/mails/mime.cpp index 076e139c40..249a4d1817 100644 --- a/plugins/YAMN/src/mails/mime.cpp +++ b/plugins/YAMN/src/mails/mime.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements retrieving info from MIME header * * (c) majvan 2002-2004 diff --git a/plugins/YAMN/src/main.cpp b/plugins/YAMN/src/main.cpp index 0a83969f8e..8a75c30865 100644 --- a/plugins/YAMN/src/main.cpp +++ b/plugins/YAMN/src/main.cpp @@ -1,4 +1,4 @@ -/* +/* * YAMN plugin main file * Miranda homepage: http://miranda-icq.sourceforge.net/ * YAMN homepage: http://www.majvan.host.sk/Projekty/YAMN diff --git a/plugins/YAMN/src/main.h b/plugins/YAMN/src/main.h index fd09d77b13..142608256d 100644 --- a/plugins/YAMN/src/main.h +++ b/plugins/YAMN/src/main.h @@ -1,4 +1,4 @@ -#ifndef __MAIN_H +#ifndef __MAIN_H #define __MAIN_H #define YAMN_NEWMAILSNDDESC LPGENW("YAMN: new mail message") diff --git a/plugins/YAMN/src/proto/netclient.h b/plugins/YAMN/src/proto/netclient.h index 2414dbdef1..0c87b5984a 100644 --- a/plugins/YAMN/src/proto/netclient.h +++ b/plugins/YAMN/src/proto/netclient.h @@ -1,4 +1,4 @@ -#ifndef __CLIENT_H +#ifndef __CLIENT_H #define __CLIENT_H class CNetClient diff --git a/plugins/YAMN/src/proto/netlib.cpp b/plugins/YAMN/src/proto/netlib.cpp index 7e4227ad91..2d1a2768ed 100644 --- a/plugins/YAMN/src/proto/netlib.cpp +++ b/plugins/YAMN/src/proto/netlib.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements communication based on Miranda netlib library * * (c) majvan 2002-2004 diff --git a/plugins/YAMN/src/proto/netlib.h b/plugins/YAMN/src/proto/netlib.h index de41a6ad04..debb9a7409 100644 --- a/plugins/YAMN/src/proto/netlib.h +++ b/plugins/YAMN/src/proto/netlib.h @@ -1,4 +1,4 @@ -#ifndef __NETLIB_H +#ifndef __NETLIB_H #define __NETLIB_H class CNLClient: public CNetClient diff --git a/plugins/YAMN/src/proto/pop3/pop3.cpp b/plugins/YAMN/src/proto/pop3/pop3.cpp index d47fac4836..219eb1fc9a 100644 --- a/plugins/YAMN/src/proto/pop3/pop3.cpp +++ b/plugins/YAMN/src/proto/pop3/pop3.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements basics of POP3 protocol * * (c) majvan 2002-2004 diff --git a/plugins/YAMN/src/proto/pop3/pop3.h b/plugins/YAMN/src/proto/pop3/pop3.h index c65dc2ee26..bb84ee2767 100644 --- a/plugins/YAMN/src/proto/pop3/pop3.h +++ b/plugins/YAMN/src/proto/pop3/pop3.h @@ -1,4 +1,4 @@ -#ifndef __POP3_H +#ifndef __POP3_H #define __POP3_H #define DOTLINE(s) ((((s)[-2]=='\r') || ((s)[-2]=='\n')) && ((s)[-1]=='.') && (((s)[0]=='\r') || ((s)[0]=='\n') || ((s)[0]=='\0'))) // be careful, it's different to ESR's pop3.c ;-) diff --git a/plugins/YAMN/src/proto/pop3/pop3comm.cpp b/plugins/YAMN/src/proto/pop3/pop3comm.cpp index edd7598c26..944b0f16c4 100644 --- a/plugins/YAMN/src/proto/pop3/pop3comm.cpp +++ b/plugins/YAMN/src/proto/pop3/pop3comm.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements POP3 server checking for new mail and so on. * There's function SynchroPOP3 in this file- for checking and synchronising POP3 account * and DeleteMailsPOP3- for deleting mails from POP3 server diff --git a/plugins/YAMN/src/proto/pop3/pop3comm.h b/plugins/YAMN/src/proto/pop3/pop3comm.h index 8d75d0876d..4c2a2e168f 100644 --- a/plugins/YAMN/src/proto/pop3/pop3comm.h +++ b/plugins/YAMN/src/proto/pop3/pop3comm.h @@ -1,4 +1,4 @@ -#ifndef __POP3COMM_H +#ifndef __POP3COMM_H #define __POP3COMM_H #define POP3_FILEVERSION 1 //Version of aditional information stored in book file diff --git a/plugins/YAMN/src/proto/pop3/pop3opt.cpp b/plugins/YAMN/src/proto/pop3/pop3opt.cpp index 5d239f3e1e..7b87aafdaf 100644 --- a/plugins/YAMN/src/proto/pop3/pop3opt.cpp +++ b/plugins/YAMN/src/proto/pop3/pop3opt.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements POP3 options window handling * * (c) majvan 2002-2003 diff --git a/plugins/YAMN/src/proto/pop3/pop3opt.h b/plugins/YAMN/src/proto/pop3/pop3opt.h index 6a678284fa..0d03e78247 100644 --- a/plugins/YAMN/src/proto/pop3/pop3opt.h +++ b/plugins/YAMN/src/proto/pop3/pop3opt.h @@ -1,4 +1,4 @@ -#ifndef __OPTIONS_H +#ifndef __OPTIONS_H #define __OPTIONS_H #define M_SHOWACTUAL 0 diff --git a/plugins/YAMN/src/protoplugin.cpp b/plugins/YAMN/src/protoplugin.cpp index d2ab6d2b79..11e34e4fa3 100644 --- a/plugins/YAMN/src/protoplugin.cpp +++ b/plugins/YAMN/src/protoplugin.cpp @@ -1,4 +1,4 @@ -/* +/* * YAMN plugin export functions for protocols * * (c) majvan 2002-2004 diff --git a/plugins/YAMN/src/resource.h b/plugins/YAMN/src/resource.h index 79965d6ae6..be6c92e926 100644 --- a/plugins/YAMN/src/resource.h +++ b/plugins/YAMN/src/resource.h @@ -1,4 +1,4 @@ -//{{NO_DEPENDENCIES}} +//{{NO_DEPENDENCIES}} // Microsoft Developer Studio generated include file. // Used by YAMN.rc // diff --git a/plugins/YAMN/src/services.cpp b/plugins/YAMN/src/services.cpp index 56c7477213..f414b98c0e 100644 --- a/plugins/YAMN/src/services.cpp +++ b/plugins/YAMN/src/services.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" static INT_PTR Service_GetCaps(WPARAM wParam, LPARAM) { diff --git a/plugins/YAMN/src/stdafx.cxx b/plugins/YAMN/src/stdafx.cxx index b05ed73bc5..bfd519e3dc 100644 --- a/plugins/YAMN/src/stdafx.cxx +++ b/plugins/YAMN/src/stdafx.cxx @@ -1,4 +1,4 @@ -/* +/* Copyright (C) 2012-17 Miranda NG project (https://miranda-ng.org) This program is free software; you can redistribute it and/or diff --git a/plugins/YAMN/src/stdafx.h b/plugins/YAMN/src/stdafx.h index e932de1d2e..04ef8853a4 100644 --- a/plugins/YAMN/src/stdafx.h +++ b/plugins/YAMN/src/stdafx.h @@ -1,4 +1,4 @@ - + #ifndef __YAMN_H #define __YAMN_H diff --git a/plugins/YAMN/src/synchro.cpp b/plugins/YAMN/src/synchro.cpp index 8a81f2a345..182479ecc9 100644 --- a/plugins/YAMN/src/synchro.cpp +++ b/plugins/YAMN/src/synchro.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements synchronization objects code between threads. If you want, you can include it to your * code. This file is not dependent on any other external code (functions) * diff --git a/plugins/YAMN/src/version.h b/plugins/YAMN/src/version.h index d9e8ed5c85..2e536b4944 100644 --- a/plugins/YAMN/src/version.h +++ b/plugins/YAMN/src/version.h @@ -1,4 +1,4 @@ -#define __MAJOR_VERSION 0 +#define __MAJOR_VERSION 0 #define __MINOR_VERSION 1 #define __RELEASE_NUM 2 #define __BUILD_NUM 6 diff --git a/plugins/YAMN/src/yamn.cpp b/plugins/YAMN/src/yamn.cpp index 9343f0f53f..303f270b2a 100644 --- a/plugins/YAMN/src/yamn.cpp +++ b/plugins/YAMN/src/yamn.cpp @@ -1,4 +1,4 @@ -/* +/* * This code implements miscellaneous usefull functions * * (c) majvan 2002-2004 -- cgit v1.2.3