From 878d72910cccf4f84c7cb45bb4c11134920f3166 Mon Sep 17 00:00:00 2001
From: George Hazan <george.hazan@gmail.com>
Date: Tue, 18 Aug 2015 11:49:54 +0000
Subject: - naming conflict; - warning fixes; - code cleaning

git-svn-id: http://svn.miranda-ng.org/main/trunk@14988 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 plugins/Rate/src/main.cpp | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

(limited to 'plugins/Rate/src')

diff --git a/plugins/Rate/src/main.cpp b/plugins/Rate/src/main.cpp
index d4e34a913e..9b8cb8a990 100644
--- a/plugins/Rate/src/main.cpp
+++ b/plugins/Rate/src/main.cpp
@@ -38,11 +38,11 @@
 HINSTANCE g_hInst;
 
 static HANDLE hExtraIcon = NULL;
-byte bRate = 0;
 int hLangpack;
 
-PLUGININFOEX pluginInfo={
-   sizeof(PLUGININFOEX),
+PLUGININFOEX pluginInfo =
+{
+	sizeof(PLUGININFOEX),
 	__PLUGIN_NAME,
 	PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
 	__DESCRIPTION,
@@ -50,15 +50,15 @@ PLUGININFOEX pluginInfo={
 	__AUTHOREMAIL,
 	__COPYRIGHT,
 	__AUTHORWEB,
-   UNICODE_AWARE,
+	UNICODE_AWARE,
 	// {45230488-977B-405B-856D-EA276D7083B7}
-   {0x45230488, 0x977b, 0x405b, {0x85, 0x6d, 0xea, 0x27, 0x6d, 0x70, 0x83, 0xb7}}
+	{0x45230488, 0x977b, 0x405b, {0x85, 0x6d, 0xea, 0x27, 0x6d, 0x70, 0x83, 0xb7}}
 };
 
 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
 {
-   g_hInst = hinstDLL;
-   return TRUE;
+	g_hInst = hinstDLL;
+	return TRUE;
 }
 
 // ����������
-- 
cgit v1.2.3