diff options
author | George Hazan <george.hazan@gmail.com> | 2016-04-23 12:52:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-04-23 12:52:41 +0000 |
commit | 1df3b034915787fbc773bc4d8739d1fca2a825d6 (patch) | |
tree | bab7c656635810e01e03a73dfd5e41307b836ff9 | |
parent | 5eb48fbccc83c4c8c0868110a9d1ae0e885b928c (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@16755 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Dropbox/src/dropbox_events.cpp | 2 | ||||
-rw-r--r-- | plugins/Dropbox/src/dropbox_options.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dropbox/src/dropbox_events.cpp b/plugins/Dropbox/src/dropbox_events.cpp index 8b7785da2d..24f4a384a7 100644 --- a/plugins/Dropbox/src/dropbox_events.cpp +++ b/plugins/Dropbox/src/dropbox_events.cpp @@ -102,7 +102,7 @@ int CDropbox::OnTabSrmmButtonPressed(WPARAM, LPARAM lParam) return 0;
}
-int CDropbox::OnFileDialogCancelled(WPARAM hContact, LPARAM lParam)
+int CDropbox::OnFileDialogCancelled(WPARAM hContact, LPARAM)
{
auto it = interceptedContacts.find(hContact);
if (it != interceptedContacts.end())
diff --git a/plugins/Dropbox/src/dropbox_options.cpp b/plugins/Dropbox/src/dropbox_options.cpp index 5c091c6d59..9f7bd0221b 100644 --- a/plugins/Dropbox/src/dropbox_options.cpp +++ b/plugins/Dropbox/src/dropbox_options.cpp @@ -52,7 +52,7 @@ void CDropboxOptionsMain::Authorize_OnClick(CCtrlBase*) /////////////////////////////////////////////////////////////////////////////////
-CDropboxOptionsInterception::CDropboxOptionsInterception(CDropbox *instance)
+CDropboxOptionsInterception::CDropboxOptionsInterception(CDropbox*)
: CPluginDlgBase(g_hInstance, IDD_OPTIONS_INTERCEPTION, MODULE),
m_accounts(this, IDC_ACCOUNTS), isAccountListInit(false)
{
|