From f4af257e9365602dc81a4b324b0ffeed1e0b2eef Mon Sep 17 00:00:00 2001
From: Kirill Volinsky <mataes2007@gmail.com>
Date: Sun, 26 Jul 2015 13:25:46 +0000
Subject: warnings fix

git-svn-id: http://svn.miranda-ng.org/main/trunk@14727 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 plugins/NewsAggregator/Src/ExportImport.cpp | 4 ++--
 plugins/NewsAggregator/Src/Options.cpp      | 4 ++--
 plugins/NewsAggregator/Src/Utils.cpp        | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/plugins/NewsAggregator/Src/ExportImport.cpp b/plugins/NewsAggregator/Src/ExportImport.cpp
index 006e21a99a..fe4b799d76 100644
--- a/plugins/NewsAggregator/Src/ExportImport.cpp
+++ b/plugins/NewsAggregator/Src/ExportImport.cpp
@@ -85,9 +85,9 @@ INT_PTR CALLBACK DlgProcImportOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM
 										} else
 											isTextUTF = 1;
 
-										for (int i = 0; i < count; i++) {
+										for (int j = 0; j < count; j++) {
 											TCHAR item[MAX_PATH];
-											SendMessage(FeedsImportList, LB_GETTEXT, (WPARAM)i, (LPARAM)item);
+											SendMessage(FeedsImportList, LB_GETTEXT, (WPARAM)j, (LPARAM)item);
 											if (!mir_tstrcmpi(item, text)) {
 												NeedToImport = TRUE;
 												break;
diff --git a/plugins/NewsAggregator/Src/Options.cpp b/plugins/NewsAggregator/Src/Options.cpp
index 42edeedac4..5ee94c2f90 100644
--- a/plugins/NewsAggregator/Src/Options.cpp
+++ b/plugins/NewsAggregator/Src/Options.cpp
@@ -497,7 +497,7 @@ INT_PTR CALLBACK UpdateNotifyOptsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPA
 		case IDC_REMOVE:
 			if (MessageBox(hwndDlg, TranslateT("Are you sure?"), TranslateT("Contact deleting"), MB_YESNO | MB_ICONWARNING) == IDYES) {
 				TCHAR nick[MAX_PATH], url[MAX_PATH];
-				int sel = ListView_GetSelectionMark(hwndList);
+				sel = ListView_GetSelectionMark(hwndList);
 				ListView_GetItemText(hwndList, sel, 0, nick, _countof(nick));
 				ListView_GetItemText(hwndList, sel, 1, url, _countof(url));
 
@@ -567,7 +567,7 @@ INT_PTR CALLBACK UpdateNotifyOptsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPA
 
 		case LVN_ITEMCHANGED:
 			NMLISTVIEW *nmlv = (NMLISTVIEW *)lParam;
-			int sel = ListView_GetSelectionMark(hwndList);
+			sel = ListView_GetSelectionMark(hwndList);
 			if (sel == -1) {
 				EnableWindow(GetDlgItem(hwndDlg, IDC_CHANGE), FALSE);
 				EnableWindow(GetDlgItem(hwndDlg, IDC_REMOVE), FALSE);
diff --git a/plugins/NewsAggregator/Src/Utils.cpp b/plugins/NewsAggregator/Src/Utils.cpp
index 45d7891281..4886377782 100644
--- a/plugins/NewsAggregator/Src/Utils.cpp
+++ b/plugins/NewsAggregator/Src/Utils.cpp
@@ -378,7 +378,7 @@ HRESULT TestMarkupServices(BSTR bstrHtml, MarkupCallback *pCallback, BSTR &messa
 	if (SUCCEEDED(hr) && pHtmlDocRoot) {
 		IPersistStreamInit *pPersistStreamInit = NULL;
 
-		HRESULT hr = pHtmlDocRoot->QueryInterface(IID_PPV_ARGS(&pPersistStreamInit));
+		hr = pHtmlDocRoot->QueryInterface(IID_PPV_ARGS(&pPersistStreamInit));
 		if (SUCCEEDED(hr)) {
 			// Initialize the root document to a default state -- ready for parsing.
 			pPersistStreamInit->InitNew();
-- 
cgit v1.2.3