From: Robin Dunn Date: Thu, 15 Apr 2004 19:19:26 +0000 (+0000) Subject: Add width and precision params for wxGridCellFloatEditor X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0c02082608f0646056053f99bdcccccd67dcaf03 Add width and precision params for wxGridCellFloatEditor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26799 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/grid.i b/wxPython/src/grid.i index d7d4d4bca3..8abc7cc0a6 100644 --- a/wxPython/src/grid.i +++ b/wxPython/src/grid.i @@ -938,7 +938,7 @@ class wxGridCellFloatEditor : public wxGridCellTextEditor { public: %pythonAppend wxGridCellFloatEditor "self._setOORInfo(self)" - wxGridCellFloatEditor(); + wxGridCellFloatEditor(int width = -1, int precision = -1); virtual wxString GetValue(); };