From: Vadim Zeitlin Date: Wed, 1 May 2013 20:53:17 +0000 (+0000) Subject: Remove the apparently unneeded wxPGPropArgCls default ctor. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/951b385ad88846cfb2ae3d22c844d726f6c4f12b Remove the apparently unneeded wxPGPropArgCls default ctor. This ctor didn't initialize the flags correctly and could result in a crash when a default constructed object was destroyed. Closes #15174. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73898 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/propgrid/propgridiface.h b/include/wx/propgrid/propgridiface.h index 9cc773d493..0f894632b2 100644 --- a/include/wx/propgrid/propgridiface.h +++ b/include/wx/propgrid/propgridiface.h @@ -29,7 +29,6 @@ class WXDLLIMPEXP_PROPGRID wxPGPropArgCls { public: - wxPGPropArgCls() { } wxPGPropArgCls( const wxPGProperty* property ) { m_ptr.property = (wxPGProperty*) property;