File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -120,10 +120,9 @@ void MatchRegWithScript(wil::com_ptr<ICoreWebView2> webView
120120 L"\nMessage: " + exceptionMessage.get() +
121121 L"\nLineNumber: " + std::to_wstring(lineNumber) +
122122 L", ColumnNumber:" + std::to_wstring(columnNumber);
123- MessageBox(
124- nullptr, exceptionInfo.c_str(),
125- L"ExecuteScript Result", MB_OK);
126- }
123+ MessageBox(
124+ nullptr, exceptionInfo.c_str(),
125+ L"ExecuteScript Result", MB_OK);
127126 }
128127 }
129128 return S_OK;
@@ -173,7 +172,7 @@ class ExecuteScriptWithResultDemo {
173172 String exceptionInfo = "The script execution failed." +
174173 "\nName:" + exception.Name +
175174 "\nMesssge: " + exception.Message +
176- "\n LineNumber :" + exception.LineNumber +
175+ "\nLineNumber :" + exception.LineNumber +
177176 ", ColumnNumber:" + exception.ColumnNumber;
178177 Debug.WriteLine($"{exceptionInfo}");
179178 }
You can’t perform that action at this time.
0 commit comments