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/senddlg.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/senddlg.cpp')
-rw-r--r-- | plugins/SMS/src/senddlg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/SMS/src/senddlg.cpp b/plugins/SMS/src/senddlg.cpp index 994cb83d8e..bc3f0d58b1 100644 --- a/plugins/SMS/src/senddlg.cpp +++ b/plugins/SMS/src/senddlg.cpp @@ -502,7 +502,7 @@ INT_PTR CALLBACK SendSmsDlgProc(HWND hWndDlg,UINT message,WPARAM wParam,LPARAM l return FALSE;
}
-INT_PTR CALLBACK SMSTimedOutDlgProc(HWND hWndDlg,UINT msg,WPARAM wParam,LPARAM lParam)
+INT_PTR CALLBACK SMSTimedOutDlgProc(HWND hWndDlg,UINT msg,WPARAM wParam,LPARAM)
{
switch(msg){
case WM_INITDIALOG:
@@ -531,7 +531,7 @@ INT_PTR CALLBACK SMSTimedOutDlgProc(HWND hWndDlg,UINT msg,WPARAM wParam,LPARAM l return FALSE;
}
-INT_PTR CALLBACK SMSAcceptedDlgProc(HWND hWndDlg,UINT msg,WPARAM wParam,LPARAM lParam)
+INT_PTR CALLBACK SMSAcceptedDlgProc(HWND hWndDlg,UINT msg,WPARAM wParam,LPARAM)
{
switch(msg){
case WM_INITDIALOG:
@@ -722,7 +722,7 @@ void SendSMSWindowNumberSet(HWND hWndDlg, LPWSTR lpwszPhone, size_t dwPhoneSize) }
//
-void SendSMSWindowAsSentSet(HWND hWndDlg)
+void SendSMSWindowAsSentSet(HWND)
{
// LVITEM lvi;
// char szPhone[MAX_PHONE_LEN];
|