From f82ffe57ed7d1455d1a2a7ccfc817f93699aa040 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 19 Sep 2016 13:36:42 -0700 Subject: [PATCH] Add missing ctors and dtor for wxPropertyGridManager --- interface/wx/propgrid/manager.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/interface/wx/propgrid/manager.h b/interface/wx/propgrid/manager.h index e21d8c9616..3d83680ada 100644 --- a/interface/wx/propgrid/manager.h +++ b/interface/wx/propgrid/manager.h @@ -203,6 +203,27 @@ public: class wxPropertyGridManager : public wxPanel, public wxPropertyGridInterface { public: + /** + Two step constructor. + Call Create when this constructor is called to build up the + wxPropertyGridManager. + */ + wxPropertyGridManager(); + + /** + The default constructor. The styles to be used are styles valid for + the wxWindow. + @see @link wndflags Additional Window Styles @endlink + */ + wxPropertyGridManager( wxWindow *parent, wxWindowID id = wxID_ANY, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxPGMAN_DEFAULT_STYLE, + const wxString& name = wxPropertyGridManagerNameStr ); + + /** Destructor */ + virtual ~wxPropertyGridManager(); + /** Creates new property page. Note that the first page is not created automatically.