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
This commit is contained in:
Robin Dunn 2015-02-16 21:40:28 +00:00
parent de27f4b08f
commit aad7136fbc

View File

@ -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.
*/