Add missing GetControl and SetControl methods

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2014-01-14 05:36:33 +00:00
parent 1e0b04a9cb
commit 575481d06b

View File

@ -466,6 +466,18 @@ public:
*/
virtual wxString GetValue() const = 0;
/**
Get the wxControl used by this editor.
*/
wxControl* GetControl() const;
/**
Set the wxControl that will be used by this cell editor for editing the
value.
*/
void SetControl(wxControl* control);
protected:
/**