summaryrefslogtreecommitdiff
path: root/protocols/IRCG
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/IRCG')
-rw-r--r--protocols/IRCG/CMakeLists.txt2
-rw-r--r--protocols/IRCG/docs/IRC_servers.ini2
-rw-r--r--protocols/IRCG/docs/license.txt2
-rw-r--r--protocols/IRCG/docs/readme.txt2
-rw-r--r--protocols/IRCG/proto_irc/CMakeLists.txt2
-rw-r--r--protocols/IRCG/proto_irc/src/resource.h2
-rw-r--r--protocols/IRCG/src/clist.cpp2
-rw-r--r--protocols/IRCG/src/commandmonitor.cpp2
-rw-r--r--protocols/IRCG/src/input.cpp2
-rw-r--r--protocols/IRCG/src/irc_dlg.h2
-rw-r--r--protocols/IRCG/src/irclib.cpp2
-rw-r--r--protocols/IRCG/src/irclib.h2
-rw-r--r--protocols/IRCG/src/ircproto.cpp2
-rw-r--r--protocols/IRCG/src/main.cpp2
-rw-r--r--protocols/IRCG/src/options.cpp2
-rw-r--r--protocols/IRCG/src/output.cpp2
-rw-r--r--protocols/IRCG/src/resource.h2
-rw-r--r--protocols/IRCG/src/scripting.cpp2
-rw-r--r--protocols/IRCG/src/services.cpp2
-rw-r--r--protocols/IRCG/src/stdafx.cxx2
-rw-r--r--protocols/IRCG/src/stdafx.h2
-rw-r--r--protocols/IRCG/src/tools.cpp2
-rw-r--r--protocols/IRCG/src/userinfo.cpp2
-rw-r--r--protocols/IRCG/src/version.h2
-rw-r--r--protocols/IRCG/src/windows.cpp2
25 files changed, 25 insertions, 25 deletions
diff --git a/protocols/IRCG/CMakeLists.txt b/protocols/IRCG/CMakeLists.txt
index 93502b9e08..9f37dca7f3 100644
--- a/protocols/IRCG/CMakeLists.txt
+++ b/protocols/IRCG/CMakeLists.txt
@@ -1,4 +1,4 @@
-file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc")
+file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc")
set(TARGET IRC)
include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake)
target_link_libraries(${TARGET} ws2_32.lib)
diff --git a/protocols/IRCG/docs/IRC_servers.ini b/protocols/IRCG/docs/IRC_servers.ini
index 06487fb49c..50090ff704 100644
--- a/protocols/IRCG/docs/IRC_servers.ini
+++ b/protocols/IRCG/docs/IRC_servers.ini
@@ -1,4 +1,4 @@
-n0=23-net: Random serverSERVER:irc.23-net.org:6667-6667GROUP:23-net
+n0=23-net: Random serverSERVER:irc.23-net.org:6667-6667GROUP:23-net
n1=4-irc: Random serverSERVER:4-irc.com:6667-6667GROUP:4-irc
n2=AbleNET: Random serverSERVER:irc.ablenet.org:6667-6667GROUP:AbleNET
n3=ABlinux: Random serverSERVER:irc.ablinux.net:6667-6669GROUP:ABlinux
diff --git a/protocols/IRCG/docs/license.txt b/protocols/IRCG/docs/license.txt
index fc35462967..7f1161073d 100644
--- a/protocols/IRCG/docs/license.txt
+++ b/protocols/IRCG/docs/license.txt
@@ -1,4 +1,4 @@
- GNU GENERAL PUBLIC LICENSE
+ GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
diff --git a/protocols/IRCG/docs/readme.txt b/protocols/IRCG/docs/readme.txt
index 28158fffd3..730f4877fb 100644
--- a/protocols/IRCG/docs/readme.txt
+++ b/protocols/IRCG/docs/readme.txt
@@ -1,4 +1,4 @@
-----------------------------oOo----------------------------
+----------------------------oOo----------------------------
IRC Protocol Plugin v 0.6.3.5
Implementation of IRC RFC-1459, RFC-2812 for Miranda IM
diff --git a/protocols/IRCG/proto_irc/CMakeLists.txt b/protocols/IRCG/proto_irc/CMakeLists.txt
index c05b713808..6b91141bc8 100644
--- a/protocols/IRCG/proto_irc/CMakeLists.txt
+++ b/protocols/IRCG/proto_irc/CMakeLists.txt
@@ -1,2 +1,2 @@
-set(TARGET Proto_IRC)
+set(TARGET Proto_IRC)
include(${CMAKE_SOURCE_DIR}/cmake/icons.cmake) \ No newline at end of file
diff --git a/protocols/IRCG/proto_irc/src/resource.h b/protocols/IRCG/proto_irc/src/resource.h
index 8af52cd129..1401653ba4 100644
--- a/protocols/IRCG/proto_irc/src/resource.h
+++ b/protocols/IRCG/proto_irc/src/resource.h
@@ -1,4 +1,4 @@
-//{{NO_DEPENDENCIES}}
+//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by Proto_IRC.rc
//
diff --git a/protocols/IRCG/src/clist.cpp b/protocols/IRCG/src/clist.cpp
index b8d91e71a7..8409c501e7 100644
--- a/protocols/IRCG/src/clist.cpp
+++ b/protocols/IRCG/src/clist.cpp
@@ -1,4 +1,4 @@
-
+
/*
IRC plugin for Miranda IM
diff --git a/protocols/IRCG/src/commandmonitor.cpp b/protocols/IRCG/src/commandmonitor.cpp
index 6464c59652..6694c24698 100644
--- a/protocols/IRCG/src/commandmonitor.cpp
+++ b/protocols/IRCG/src/commandmonitor.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/input.cpp b/protocols/IRCG/src/input.cpp
index 6309bee136..8b7bec22e7 100644
--- a/protocols/IRCG/src/input.cpp
+++ b/protocols/IRCG/src/input.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/irc_dlg.h b/protocols/IRCG/src/irc_dlg.h
index e5bf098678..a9610a97f3 100644
--- a/protocols/IRCG/src/irc_dlg.h
+++ b/protocols/IRCG/src/irc_dlg.h
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/irclib.cpp b/protocols/IRCG/src/irclib.cpp
index ff91fddd38..94f736affa 100644
--- a/protocols/IRCG/src/irclib.cpp
+++ b/protocols/IRCG/src/irclib.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/irclib.h b/protocols/IRCG/src/irclib.h
index c60fd782e5..dcb6fccf00 100644
--- a/protocols/IRCG/src/irclib.h
+++ b/protocols/IRCG/src/irclib.h
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/ircproto.cpp b/protocols/IRCG/src/ircproto.cpp
index 263fcc3b8f..869732806a 100644
--- a/protocols/IRCG/src/ircproto.cpp
+++ b/protocols/IRCG/src/ircproto.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/main.cpp b/protocols/IRCG/src/main.cpp
index 9f922f4f8a..8ca2aa485d 100644
--- a/protocols/IRCG/src/main.cpp
+++ b/protocols/IRCG/src/main.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/options.cpp b/protocols/IRCG/src/options.cpp
index da1b6a9c79..374500cb5f 100644
--- a/protocols/IRCG/src/options.cpp
+++ b/protocols/IRCG/src/options.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/output.cpp b/protocols/IRCG/src/output.cpp
index 0e5f2e9f54..49958b1fd9 100644
--- a/protocols/IRCG/src/output.cpp
+++ b/protocols/IRCG/src/output.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/resource.h b/protocols/IRCG/src/resource.h
index 33b05459a4..b2462f00ca 100644
--- a/protocols/IRCG/src/resource.h
+++ b/protocols/IRCG/src/resource.h
@@ -1,4 +1,4 @@
-//{{NO_DEPENDENCIES}}
+//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by ..\res\IRC.rc
//
diff --git a/protocols/IRCG/src/scripting.cpp b/protocols/IRCG/src/scripting.cpp
index 00e9343c52..ee3c57ab90 100644
--- a/protocols/IRCG/src/scripting.cpp
+++ b/protocols/IRCG/src/scripting.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/services.cpp b/protocols/IRCG/src/services.cpp
index c6f28e6c74..c6ed1fb46c 100644
--- a/protocols/IRCG/src/services.cpp
+++ b/protocols/IRCG/src/services.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/stdafx.cxx b/protocols/IRCG/src/stdafx.cxx
index b30b5516a7..e0372ed6dc 100644
--- a/protocols/IRCG/src/stdafx.cxx
+++ b/protocols/IRCG/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/protocols/IRCG/src/stdafx.h b/protocols/IRCG/src/stdafx.h
index 5e623c08bf..4a5c6eea79 100644
--- a/protocols/IRCG/src/stdafx.h
+++ b/protocols/IRCG/src/stdafx.h
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/tools.cpp b/protocols/IRCG/src/tools.cpp
index 18e8eae4b6..96434c7150 100644
--- a/protocols/IRCG/src/tools.cpp
+++ b/protocols/IRCG/src/tools.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/userinfo.cpp b/protocols/IRCG/src/userinfo.cpp
index dcc6195f24..faa5809241 100644
--- a/protocols/IRCG/src/userinfo.cpp
+++ b/protocols/IRCG/src/userinfo.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson
diff --git a/protocols/IRCG/src/version.h b/protocols/IRCG/src/version.h
index 0e2477f9b1..a708c116a6 100644
--- a/protocols/IRCG/src/version.h
+++ b/protocols/IRCG/src/version.h
@@ -1,4 +1,4 @@
-#define __MAJOR_VERSION 0
+#define __MAJOR_VERSION 0
#define __MINOR_VERSION 95
#define __RELEASE_NUM 7
#define __BUILD_NUM 1
diff --git a/protocols/IRCG/src/windows.cpp b/protocols/IRCG/src/windows.cpp
index d97656e49a..759436f5fc 100644
--- a/protocols/IRCG/src/windows.cpp
+++ b/protocols/IRCG/src/windows.cpp
@@ -1,4 +1,4 @@
-/*
+/*
IRC plugin for Miranda IM
Copyright (C) 2003-05 Jurgen Persson