diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-12-12 16:43:26 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-12-12 16:43:26 +0000 |
commit | 17fa47e9d4255dd2034b7d28fc41ffd756197d24 (patch) | |
tree | 2c1ec7042180cd728eb56527195f3989ca938714 /plugins/NewsAggregator/Src/Update.cpp | |
parent | 6dc4fd2f8e7505ee9ed4e58401b1f3b7c3438efd (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/Update.cpp')
-rw-r--r-- | plugins/NewsAggregator/Src/Update.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewsAggregator/Src/Update.cpp b/plugins/NewsAggregator/Src/Update.cpp index 99129017c8..56ff1a1f39 100644 --- a/plugins/NewsAggregator/Src/Update.cpp +++ b/plugins/NewsAggregator/Src/Update.cpp @@ -25,7 +25,7 @@ UPDATELIST *UpdateListHead = NULL; UPDATELIST *UpdateListTail = NULL;
// main auto-update timer
-void CALLBACK timerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
+void CALLBACK timerProc(HWND, UINT, UINT_PTR, DWORD)
{
// only run if it is not current updating and the auto update option is enabled
if (!ThreadRunning && !Miranda_Terminated()) {
@@ -46,7 +46,7 @@ void CALLBACK timerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime) // temporary timer for first run
// when this is run, it kill the old startup timer and create the permenant one above
-void CALLBACK timerProc2(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
+void CALLBACK timerProc2(HWND, UINT, UINT_PTR, DWORD)
{
KillTimer(NULL, timerId);
ThreadRunning = FALSE;
|