From 792ce5399267763305aae988c3d6e3eb42a85b90 Mon Sep 17 00:00:00 2001 From: vldmr11080 <57061786+vldmr11080@users.noreply.github.com> Date: Thu, 11 Jun 2020 17:03:02 +0200 Subject: [PATCH] Fix invalid namespace (#4259) --- src/runner/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner/main.cpp b/src/runner/main.cpp index b961c9be0c..34bfb40095 100644 --- a/src/runner/main.cpp +++ b/src/runner/main.cpp @@ -264,7 +264,7 @@ void RequestExplorerRestart() localized_strings::PT_UPDATE_MESSAGE_BOX_TITLE, MB_ICONINFORMATION | MB_YESNO | MB_DEFBUTTON1) == IDYES) { - RestartProcess(localized_strings::EXPLORER_PROCESS_NAME); + RestartProcess(EXPLORER_PROCESS_NAME); } }