mirror of https://github.com/PCSX2/pcsx2.git
core: use = default instead of trivial copy constructor
This commit is contained in:
parent
585ccc1b24
commit
94b50b85e7
|
@ -386,7 +386,7 @@ public:
|
|||
pxMessageBoxEvent() {}
|
||||
pxMessageBoxEvent(const wxString &title, const wxString &content, const MsgButtons &buttons, SynchronousActionState &instdata);
|
||||
pxMessageBoxEvent(const wxString &title, const wxString &content, const MsgButtons &buttons, SynchronousActionState *instdata = NULL);
|
||||
pxMessageBoxEvent(const pxMessageBoxEvent &event);
|
||||
pxMessageBoxEvent(const pxMessageBoxEvent &event) = default;
|
||||
|
||||
protected:
|
||||
int _DoDialog() const;
|
||||
|
@ -409,7 +409,7 @@ public:
|
|||
|
||||
pxAssertionEvent(const wxString &content = wxEmptyString, const wxString &trace = wxEmptyString, SynchronousActionState *instdata = NULL);
|
||||
pxAssertionEvent(const wxString &content, const wxString &trace, SynchronousActionState &instdata);
|
||||
pxAssertionEvent(const pxAssertionEvent &event);
|
||||
pxAssertionEvent(const pxAssertionEvent &event) = default;
|
||||
|
||||
pxAssertionEvent &SetStacktrace(const wxString &trace);
|
||||
|
||||
|
|
|
@ -97,13 +97,6 @@ pxMessageBoxEvent::pxMessageBoxEvent( const wxString& title, const wxString& con
|
|||
{
|
||||
}
|
||||
|
||||
pxMessageBoxEvent::pxMessageBoxEvent( const pxMessageBoxEvent& event )
|
||||
: BaseMessageBoxEvent( event )
|
||||
, m_Title( event.m_Title )
|
||||
, m_Buttons( event.m_Buttons )
|
||||
{
|
||||
}
|
||||
|
||||
int pxMessageBoxEvent::_DoDialog() const
|
||||
{
|
||||
return pxMessageDialog( m_Title, m_Content, m_Buttons );
|
||||
|
@ -126,12 +119,6 @@ pxAssertionEvent::pxAssertionEvent( const wxString& content, const wxString& tra
|
|||
{
|
||||
}
|
||||
|
||||
pxAssertionEvent::pxAssertionEvent( const pxAssertionEvent& event )
|
||||
: BaseMessageBoxEvent( event )
|
||||
, m_Stacktrace( event.m_Stacktrace )
|
||||
{
|
||||
}
|
||||
|
||||
pxAssertionEvent& pxAssertionEvent::SetStacktrace( const wxString& trace )
|
||||
{
|
||||
m_Stacktrace = trace;
|
||||
|
|
Loading…
Reference in New Issue