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:
parent
704e5f1419
commit
f1734a29b6
1 changed files with 2 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue