summaryrefslogtreecommitdiff
path: root/plugins/NewsAggregator/Src/ExportImport.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2014-12-12 16:43:26 +0000
committerKirill Volinsky <mataes2007@gmail.com>2014-12-12 16:43:26 +0000
commit17fa47e9d4255dd2034b7d28fc41ffd756197d24 (patch)
tree2c1ec7042180cd728eb56527195f3989ca938714 /plugins/NewsAggregator/Src/ExportImport.cpp
parent6dc4fd2f8e7505ee9ed4e58401b1f3b7c3438efd (diff)
NewsAggregator: changed warning lavel to w4
git-svn-id: http://svn.miranda-ng.org/main/trunk@11349 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewsAggregator/Src/ExportImport.cpp')
-rw-r--r--plugins/NewsAggregator/Src/ExportImport.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewsAggregator/Src/ExportImport.cpp b/plugins/NewsAggregator/Src/ExportImport.cpp
index 894aebc04e..63a8f28e42 100644
--- a/plugins/NewsAggregator/Src/ExportImport.cpp
+++ b/plugins/NewsAggregator/Src/ExportImport.cpp
@@ -457,7 +457,7 @@ INT_PTR CALLBACK DlgProcImportOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM
return FALSE;
}
-INT_PTR CALLBACK DlgProcExportOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK DlgProcExportOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM)
{
HWND FeedsList = GetDlgItem(hwndDlg, IDC_FEEDSLIST);
HWND FeedsExportList = GetDlgItem(hwndDlg, IDC_FEEDSEXPORTLIST);
@@ -507,7 +507,7 @@ INT_PTR CALLBACK DlgProcExportOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM
HXML hXml = xi.createNode(_T("opml"), NULL, FALSE);
xi.addAttr(hXml, _T("version"), _T("1.0"));
HXML header = xi.addChild(hXml, _T("head"), NULL);
- HXML title = xi.addChild(header, _T("title"), _T("Miranda NG NewsAggregator plugin export"));
+ xi.addChild(header, _T("title"), _T("Miranda NG NewsAggregator plugin export"));
header = xi.addChild(hXml, _T("body"), NULL);
int count = SendMessage(FeedsExportList, LB_GETCOUNT, 0, 0);