From aad7136fbc400c14b83d3c68a2c7bd8d51a5939a Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 16 Feb 2015 21:40:28 +0000 Subject: [PATCH] Add some missing default ctors and Create methods. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78510 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/richtext/richtextstyles.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/interface/wx/richtext/richtextstyles.h b/interface/wx/richtext/richtextstyles.h index 07af070842..085a293f60 100644 --- a/interface/wx/richtext/richtextstyles.h +++ b/interface/wx/richtext/richtextstyles.h @@ -267,12 +267,22 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0); + wxRichTextStyleListBox(); /** Destructor. */ virtual ~wxRichTextStyleListBox(); + /** + Creates the window. + */ + bool Create(wxWindow* parent, + wxWindowID id = wxID_ANY, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = 0); + /** Applies the @e ith style to the associated rich text control. */ @@ -384,12 +394,22 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0); + wxRichTextStyleComboCtrl(); /** Destructor. */ virtual ~wxRichTextStyleComboCtrl(); + /** + Creates the windows. + */ + bool Create(wxWindow* parent, + wxWindowID id = wxID_ANY, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = 0); + /** Returns the wxRichTextCtrl associated with this control. */