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/Ping/res/Version.rc | 2 +- plugins/Ping/res/ping.rc | 2 +- plugins/Ping/src/collection.h | 2 +- plugins/Ping/src/icmp.cpp | 2 +- plugins/Ping/src/icmp.h | 2 +- plugins/Ping/src/log.cpp | 2 +- plugins/Ping/src/log.h | 2 +- plugins/Ping/src/menu.cpp | 2 +- plugins/Ping/src/menu.h | 2 +- plugins/Ping/src/options.cpp | 2 +- plugins/Ping/src/options.h | 2 +- plugins/Ping/src/ping.cpp | 2 +- plugins/Ping/src/pinggraph.cpp | 2 +- plugins/Ping/src/pinggraph.h | 2 +- plugins/Ping/src/pinglist.cpp | 2 +- plugins/Ping/src/pinglist.h | 2 +- plugins/Ping/src/pingthread.cpp | 2 +- plugins/Ping/src/pingthread.h | 2 +- plugins/Ping/src/rawping.cpp | 2 +- plugins/Ping/src/rawping.h | 2 +- plugins/Ping/src/resource.h | 2 +- plugins/Ping/src/stdafx.cxx | 2 +- plugins/Ping/src/stdafx.h | 2 +- plugins/Ping/src/utils.cpp | 2 +- plugins/Ping/src/utils.h | 2 +- plugins/Ping/src/version.h | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) (limited to 'plugins/Ping') diff --git a/plugins/Ping/res/Version.rc b/plugins/Ping/res/Version.rc index fdeb14668c..6427dc9522 100644 --- a/plugins/Ping/res/Version.rc +++ b/plugins/Ping/res/Version.rc @@ -1,4 +1,4 @@ -// Microsoft Visual C++ generated resource script. +// Microsoft Visual C++ generated resource script. // #ifdef APSTUDIO_INVOKED #error this file is not editable by Microsoft Visual C++ diff --git a/plugins/Ping/res/ping.rc b/plugins/Ping/res/ping.rc index 0819d123a7..ad7bf9635e 100644 --- a/plugins/Ping/res/ping.rc +++ b/plugins/Ping/res/ping.rc @@ -1,4 +1,4 @@ -// Microsoft Visual C++ generated resource script. +// Microsoft Visual C++ generated resource script. // #include "..\src\resource.h" diff --git a/plugins/Ping/src/collection.h b/plugins/Ping/src/collection.h index 6e1615ea01..b09537e11c 100644 --- a/plugins/Ping/src/collection.h +++ b/plugins/Ping/src/collection.h @@ -1,4 +1,4 @@ -template class Collection +template class Collection { protected: unsigned long count; diff --git a/plugins/Ping/src/icmp.cpp b/plugins/Ping/src/icmp.cpp index 26e7379845..637def4cf3 100644 --- a/plugins/Ping/src/icmp.cpp +++ b/plugins/Ping/src/icmp.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" char data[] = "AAAABBBBCCCCDDDDEEEEFFFFGGGGHHH"; ICMP *ICMP::instance = nullptr; diff --git a/plugins/Ping/src/icmp.h b/plugins/Ping/src/icmp.h index d3b8e665a1..91b0749a65 100644 --- a/plugins/Ping/src/icmp.h +++ b/plugins/Ping/src/icmp.h @@ -1,4 +1,4 @@ -// adapted 23/9/2004 from public domain code at http://tangentsoft.net/wskfaq/examples/dllping.html +// adapted 23/9/2004 from public domain code at http://tangentsoft.net/wskfaq/examples/dllping.html #ifndef _ICMP_H #define _ICMP_H diff --git a/plugins/Ping/src/log.cpp b/plugins/Ping/src/log.cpp index 20782c2c17..ea4ac56f18 100644 --- a/plugins/Ping/src/log.cpp +++ b/plugins/Ping/src/log.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" INT_PTR Log(WPARAM wParam, LPARAM) { diff --git a/plugins/Ping/src/log.h b/plugins/Ping/src/log.h index 1930dddede..e4d1315f1d 100644 --- a/plugins/Ping/src/log.h +++ b/plugins/Ping/src/log.h @@ -1,4 +1,4 @@ -#ifndef _PING_LOG +#ifndef _PING_LOG #define _PING_LOG INT_PTR Log(WPARAM wParam, LPARAM lParam); diff --git a/plugins/Ping/src/menu.cpp b/plugins/Ping/src/menu.cpp index 3f2a0bd198..5a434e2e8a 100644 --- a/plugins/Ping/src/menu.cpp +++ b/plugins/Ping/src/menu.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" HANDLE hMenuDisable, hMenuGraph, hMenuEdit; HANDLE hEventMenuBuild; diff --git a/plugins/Ping/src/menu.h b/plugins/Ping/src/menu.h index 314aa679c2..2fef015046 100644 --- a/plugins/Ping/src/menu.h +++ b/plugins/Ping/src/menu.h @@ -1,4 +1,4 @@ -#ifndef _MENU_H +#ifndef _MENU_H #define _MENU_H void InitMenus(); diff --git a/plugins/Ping/src/options.cpp b/plugins/Ping/src/options.cpp index f8ee4ec831..745265acfb 100644 --- a/plugins/Ping/src/options.cpp +++ b/plugins/Ping/src/options.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" PingOptions options; diff --git a/plugins/Ping/src/options.h b/plugins/Ping/src/options.h index 9bbfca0ca7..d30e7a5526 100644 --- a/plugins/Ping/src/options.h +++ b/plugins/Ping/src/options.h @@ -1,4 +1,4 @@ -#ifndef _PING_OPTIONS +#ifndef _PING_OPTIONS #define _PING_OPTIONS INT_PTR CALLBACK DlgProcDestEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); diff --git a/plugins/Ping/src/ping.cpp b/plugins/Ping/src/ping.cpp index c703feba7a..b56a8cf657 100644 --- a/plugins/Ping/src/ping.cpp +++ b/plugins/Ping/src/ping.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" CLIST_INTERFACE *pcli; HINSTANCE hInst; diff --git a/plugins/Ping/src/pinggraph.cpp b/plugins/Ping/src/pinggraph.cpp index 554c740c61..cc993a19f1 100644 --- a/plugins/Ping/src/pinggraph.cpp +++ b/plugins/Ping/src/pinggraph.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" HistoryMap history_map; diff --git a/plugins/Ping/src/pinggraph.h b/plugins/Ping/src/pinggraph.h index 50b6040c98..22209d1507 100644 --- a/plugins/Ping/src/pinggraph.h +++ b/plugins/Ping/src/pinggraph.h @@ -1,4 +1,4 @@ -#ifndef _PINGGRAPH_H +#ifndef _PINGGRAPH_H #define _PINGGRAPH_H #define MIN_GRAPH_HEIGHT 10 // minimum braph height, ms diff --git a/plugins/Ping/src/pinglist.cpp b/plugins/Ping/src/pinglist.cpp index 92e094e74b..d5abd5e1c3 100644 --- a/plugins/Ping/src/pinglist.cpp +++ b/plugins/Ping/src/pinglist.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" PINGLIST list_items; mir_cs list_cs; diff --git a/plugins/Ping/src/pinglist.h b/plugins/Ping/src/pinglist.h index b01dcd4a17..e23b8aae50 100644 --- a/plugins/Ping/src/pinglist.h +++ b/plugins/Ping/src/pinglist.h @@ -1,4 +1,4 @@ -#ifndef _PINGLIST_H +#ifndef _PINGLIST_H #define _PINGLIST_H INT_PTR LoadPingList(WPARAM wParam, LPARAM lParam); diff --git a/plugins/Ping/src/pingthread.cpp b/plugins/Ping/src/pingthread.cpp index 1cc8632675..63a07ca31a 100644 --- a/plugins/Ping/src/pingthread.cpp +++ b/plugins/Ping/src/pingthread.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" int upCount, total = 0; diff --git a/plugins/Ping/src/pingthread.h b/plugins/Ping/src/pingthread.h index 37b50e308c..fa6630aae9 100644 --- a/plugins/Ping/src/pingthread.h +++ b/plugins/Ping/src/pingthread.h @@ -1,4 +1,4 @@ -#ifndef _PINGTHREAD_H +#ifndef _PINGTHREAD_H #define _PINGTHREAD_H int FillList(WPARAM wParam, LPARAM lParam); diff --git a/plugins/Ping/src/rawping.cpp b/plugins/Ping/src/rawping.cpp index c5b2c0c2e8..5f86d6ee61 100644 --- a/plugins/Ping/src/rawping.cpp +++ b/plugins/Ping/src/rawping.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" USHORT ip_checksum(USHORT* buffer, int size) { diff --git a/plugins/Ping/src/rawping.h b/plugins/Ping/src/rawping.h index 59751d8c7a..98b8d471e1 100644 --- a/plugins/Ping/src/rawping.h +++ b/plugins/Ping/src/rawping.h @@ -1,4 +1,4 @@ -#ifndef _RAWPING_H +#ifndef _RAWPING_H #define _RAWPING_H // ICMP protocol identifier diff --git a/plugins/Ping/src/resource.h b/plugins/Ping/src/resource.h index 214edade09..088219da29 100644 --- a/plugins/Ping/src/resource.h +++ b/plugins/Ping/src/resource.h @@ -1,4 +1,4 @@ -//{{NO_DEPENDENCIES}} +//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by ping.rc // diff --git a/plugins/Ping/src/stdafx.cxx b/plugins/Ping/src/stdafx.cxx index b05ed73bc5..bfd519e3dc 100644 --- a/plugins/Ping/src/stdafx.cxx +++ b/plugins/Ping/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/Ping/src/stdafx.h b/plugins/Ping/src/stdafx.h index 7bdfa5be69..02c30d8701 100644 --- a/plugins/Ping/src/stdafx.h +++ b/plugins/Ping/src/stdafx.h @@ -1,4 +1,4 @@ -#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers +#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #include #include diff --git a/plugins/Ping/src/utils.cpp b/plugins/Ping/src/utils.cpp index cf900a3ffa..6f6eb2ee6c 100644 --- a/plugins/Ping/src/utils.cpp +++ b/plugins/Ping/src/utils.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" LRESULT CALLBACK NullWindowProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { diff --git a/plugins/Ping/src/utils.h b/plugins/Ping/src/utils.h index d084a4ae9a..6916c871b7 100644 --- a/plugins/Ping/src/utils.h +++ b/plugins/Ping/src/utils.h @@ -1,4 +1,4 @@ -#ifndef _PING_UTILS +#ifndef _PING_UTILS #define _PING_UTILS void __stdcall ShowPopup(wchar_t *line1, wchar_t *line2, int flags); diff --git a/plugins/Ping/src/version.h b/plugins/Ping/src/version.h index 16ad496842..399a2cbe13 100644 --- a/plugins/Ping/src/version.h +++ b/plugins/Ping/src/version.h @@ -1,4 +1,4 @@ -#define __MAJOR_VERSION 0 +#define __MAJOR_VERSION 0 #define __MINOR_VERSION 9 #define __RELEASE_NUM 1 #define __BUILD_NUM 1 -- cgit v1.2.3