Use compiler-generated wxWebViewEvent default ctor

No real changes, just let the compiler do what it does best and generate
the code for us instead of writing "{}" explicitly.
This commit is contained in:
Vadim Zeitlin 2023-09-05 20:52:50 +02:00
parent 704e5f1419
commit f1734a29b6

View file

@ -375,7 +375,8 @@ protected:
class WXDLLIMPEXP_WEBVIEW wxWebViewEvent : public wxNotifyEvent
{
public:
wxWebViewEvent() {}
wxWebViewEvent() = default;
wxWebViewEvent(wxEventType type, int id, const wxString& url,
const wxString target,
wxWebViewNavigationActionFlags flags = wxWEBVIEW_NAV_ACTION_NONE,