diff options
Diffstat (limited to 'plugins/Dropbox/src')
-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)
{
|