From 166d7e2c83e706bb452a6f18489a1c99b9410ca5 Mon Sep 17 00:00:00 2001 From: Tobias Taschner Date: Sun, 28 Feb 2021 20:06:59 +0100 Subject: [PATCH] Fix unused warning in sample --- samples/webview/webview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/webview/webview.cpp b/samples/webview/webview.cpp index f5459fe35b..3bd20ac462 100644 --- a/samples/webview/webview.cpp +++ b/samples/webview/webview.cpp @@ -1191,7 +1191,7 @@ void WebFrame::OnRunScriptArrayWithEmulationLevel(wxCommandEvent& WXUNUSED(evt)) } #endif -void WebFrame::OnRunScriptMessage(wxCommandEvent & evt) +void WebFrame::OnRunScriptMessage(wxCommandEvent& WXUNUSED(evt)) { RunScript("window.wx.postMessage('This is a web message');"); }