diff options
Diffstat (limited to 'onlineupdate')
-rw-r--r-- | onlineupdate/source/update/updater/progressui_win.cxx | 4 | ||||
-rw-r--r-- | onlineupdate/source/update/updater/updater.cxx | 2 |
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. |