summaryrefslogtreecommitdiff
path: root/onlineupdate
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-09-17 11:35:22 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-05-19 03:43:24 +0200
commitc5434903d6ab08b0df6ab0965c2b081ef592925c (patch)
treead27be262d793e3d41cba74e8fbee6cf97ea3cd2 /onlineupdate
parent82ee1327f95a60f202ef25e431fbdcc228245b73 (diff)
fix unused parameter warnings
Change-Id: I959129f9cf2ea0534cadf89948f9d1f09a7e2540
Diffstat (limited to 'onlineupdate')
-rw-r--r--onlineupdate/source/update/updater/progressui_win.cxx4
-rw-r--r--onlineupdate/source/update/updater/updater.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/onlineupdate/source/update/updater/progressui_win.cxx b/onlineupdate/source/update/updater/progressui_win.cxx
index 861835994dff..b1f2b99a5eb2 100644
--- a/onlineupdate/source/update/updater/progressui_win.cxx
+++ b/onlineupdate/source/update/updater/progressui_win.cxx
@@ -182,7 +182,7 @@ InitDialog(HWND hDlg)
// Message handler for update dialog.
static LRESULT CALLBACK
-DialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+DialogProc(HWND hDlg, UINT message, WPARAM /*wParam*/, LPARAM /*lParam*/)
{
switch (message)
{
@@ -205,7 +205,7 @@ DialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
}
int
-InitProgressUI(int *argc, WCHAR ***argv)
+InitProgressUI(int* /*argc*/, WCHAR*** /*argv*/)
{
return 0;
}
diff --git a/onlineupdate/source/update/updater/updater.cxx b/onlineupdate/source/update/updater/updater.cxx
index e1d791ef4d4a..edda4c9702da 100644
--- a/onlineupdate/source/update/updater/updater.cxx
+++ b/onlineupdate/source/update/updater/updater.cxx
@@ -2293,7 +2293,7 @@ ProcessReplaceRequest()
#ifdef _WIN32
static void
-WaitForServiceFinishThread(void *param)
+WaitForServiceFinishThread(void* /*param*/)
{
// We wait at most 10 minutes, we already waited 5 seconds previously
// before deciding to show this UI.