From: Jaakko Salli Date: Wed, 10 Jun 2009 20:51:25 +0000 (+0000) Subject: Added note about 'Py' prefix no longer being necessary when reimplementing property... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0cd4552a99bfc8a51a676ee49f1d50ce64f0714b Added note about 'Py' prefix no longer being necessary when reimplementing property member functions in wxPython git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60991 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/doxygen/overviews/propgrid.h b/docs/doxygen/overviews/propgrid.h index 9af5660c80..4029cc907a 100644 --- a/docs/doxygen/overviews/propgrid.h +++ b/docs/doxygen/overviews/propgrid.h @@ -961,4 +961,9 @@ without warnings or errors. wxPGEditor::CreateControls(). wxPropertyGrid automatically passes all events from editor to wxPGEditor::OnEvent() and wxPGProperty::OnEvent(), as appropriate. + + - wxPython: Previously some of the reimplemented member functions needed a + 'Py' prefix. This is no longer necessary. For instance, if you previously + implemented PyStringToValue() for your custom property, you should now + just implement StringToValue(). */