From 575481d06bae9da874d400b5bde0fda2cf944bb0 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 14 Jan 2014 05:36:33 +0000 Subject: [PATCH] Add missing GetControl and SetControl methods git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/grid.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/interface/wx/grid.h b/interface/wx/grid.h index e56dcc5c19..3b5a0615cc 100644 --- a/interface/wx/grid.h +++ b/interface/wx/grid.h @@ -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: /**