From fffcd98b6f25af8d7a7895302e3b1ff64344d526 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Sun, 26 Jul 2015 11:49:19 +0000 Subject: Ping: common project git-svn-id: http://svn.miranda-ng.org/main/trunk@14723 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Ping/src/utils.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/Ping/src/utils.cpp') diff --git a/plugins/Ping/src/utils.cpp b/plugins/Ping/src/utils.cpp index 3040e69270..5421275577 100644 --- a/plugins/Ping/src/utils.cpp +++ b/plugins/Ping/src/utils.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" LRESULT CALLBACK NullWindowProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { @@ -134,7 +134,7 @@ INT_PTR PluginPing(WPARAM, LPARAM lParam) return 0; } -INT_PTR PingDisableAll(WPARAM wParam, LPARAM lParam) { +INT_PTR PingDisableAll(WPARAM, LPARAM) { PINGLIST pl; CallService(PLUG "/GetPingList", 0, (LPARAM)&pl); for (pinglist_it i = pl.begin(); i != pl.end(); ++i) { @@ -145,7 +145,7 @@ INT_PTR PingDisableAll(WPARAM wParam, LPARAM lParam) { return 0; } -INT_PTR PingEnableAll(WPARAM wParam, LPARAM lParam) { +INT_PTR PingEnableAll(WPARAM, LPARAM) { PINGLIST pl; CallService(PLUG "/GetPingList", 0, (LPARAM)&pl); for (pinglist_it i = pl.begin(); i != pl.end(); ++i) { @@ -158,7 +158,7 @@ INT_PTR PingEnableAll(WPARAM wParam, LPARAM lParam) { } -INT_PTR ToggleEnabled(WPARAM wParam, LPARAM lParam) { +INT_PTR ToggleEnabled(WPARAM wParam, LPARAM) { int retval = 0; PINGLIST pl; CallService(PLUG "/GetPingList", 0, (LPARAM)&pl); @@ -178,7 +178,7 @@ INT_PTR ToggleEnabled(WPARAM wParam, LPARAM lParam) { return 0; } -INT_PTR EditContact(WPARAM wParam, LPARAM lParam) +INT_PTR EditContact(WPARAM wParam, LPARAM) { PINGLIST pl; HWND hwndList = pcli->hwndContactList; @@ -200,7 +200,7 @@ INT_PTR EditContact(WPARAM wParam, LPARAM lParam) return 1; } -INT_PTR DblClick(WPARAM wParam, LPARAM lParam) { +INT_PTR DblClick(WPARAM wParam, LPARAM) { PINGLIST pl; CallService(PLUG "/GetPingList", 0, (LPARAM)&pl); for (pinglist_it i = pl.begin(); i != pl.end(); ++i) { -- cgit v1.2.3