diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-31 21:02:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-31 21:02:53 +0000 |
commit | aa7b69500fc5ce34840076de537dbfab2c31ab81 (patch) | |
tree | fc035b4b454e47dc050bafa9e4eb695a90cff725 /plugins/SMS/src/SMS_svc.cpp | |
parent | ae310cd45dcc29c5f9f55734fbf42d136ace8240 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14774 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SMS/src/SMS_svc.cpp')
-rw-r--r-- | plugins/SMS/src/SMS_svc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SMS/src/SMS_svc.cpp b/plugins/SMS/src/SMS_svc.cpp index 6fb8511a84..474a9194d4 100644 --- a/plugins/SMS/src/SMS_svc.cpp +++ b/plugins/SMS/src/SMS_svc.cpp @@ -52,14 +52,14 @@ int LoadModules(void) return 0;
}
-int SmsRebuildContactMenu(WPARAM wParam,LPARAM lParam)
+int SmsRebuildContactMenu(WPARAM wParam, LPARAM)
{
Menu_ShowItem(ssSMSSettings.hContactMenuItems[0], GetContactPhonesCount(wParam) != 0);
return 0;
}
//This function called when user clicked Menu.
-int SendSMSMenuCommand(WPARAM wParam,LPARAM lParam)
+int SendSMSMenuCommand(WPARAM wParam, LPARAM)
{
HWND hwndSendSms;
@@ -89,7 +89,7 @@ int SendSMSMenuCommand(WPARAM wParam,LPARAM lParam) //This function used to popup a read SMS window after the user clicked on the received SMS message.
-int ReadMsgSMS(WPARAM wParam,LPARAM lParam)
+int ReadMsgSMS(WPARAM, LPARAM lParam)
{
CLISTEVENT *cle = (CLISTEVENT*)lParam;
@@ -110,7 +110,7 @@ int ReadMsgSMS(WPARAM wParam,LPARAM lParam) }
//This function used to popup a read SMS window after the user clicked on the received SMS confirmation.
-int ReadAckSMS(WPARAM wParam,LPARAM lParam)
+int ReadAckSMS(WPARAM, LPARAM lParam)
{
CLISTEVENT *cle = (CLISTEVENT*)lParam;
|