Skip to content

Commit 6bdf910

Browse files
committed
Fixed loading/saving of XML configuration file.
1 parent fa0b434 commit 6bdf910

File tree

8 files changed

+73
-174
lines changed

8 files changed

+73
-174
lines changed

EdgeWebBrowser.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ void CWebBrowser::RegisterEventHandlers()
325325
CHECK_FAILURE(m_pImpl->m_webView->add_DocumentTitleChanged(
326326
Callback<ICoreWebView2DocumentTitleChangedEventHandler>(
327327
[this](ICoreWebView2* sender, IUnknown* args) -> HRESULT {
328+
UNREFERENCED_PARAMETER(args);
328329
wil::unique_cotaskmem_string title;
329330
CHECK_FAILURE(sender->get_DocumentTitle(&title));
330331

@@ -731,6 +732,7 @@ void CWebBrowser::ExecuteScript(CString const& code)
731732
Callback<ICoreWebView2ExecuteScriptCompletedHandler>(
732733
[](HRESULT error, PCWSTR result) -> HRESULT
733734
{
735+
UNREFERENCED_PARAMETER(result);
734736
if (error != S_OK) {
735737
ShowFailure(error, L"ExecuteScript failed");
736738
}

IntelliLink.rc

0 Bytes
Binary file not shown.

ReleaseNotes.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ <h2>History</h2>
8787
<li>Implemented <strong>Check for updates...</strong> option into Help menu.</li>
8888
</ul>
8989
</li>
90+
<li>Version 1.21 (September 20<sup>th</sup>, 2024): Fixed loading/saving of XML configuration file.</li>
9091
</ul>
9192
</div>
9293
</div>

0 commit comments

Comments
 (0)