From 6fdca1977328544c91b283273d5ac42ddf1778c3 Mon Sep 17 00:00:00 2001 From: Jaakko Salli Date: Wed, 10 Jun 2009 20:50:45 +0000 Subject: [PATCH] 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/branches/WX_2_9_0_BRANCH@60990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/doxygen/overviews/propgrid.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/doxygen/overviews/propgrid.h b/docs/doxygen/overviews/propgrid.h index daa13c08d0..9c55870ea1 100644 --- a/docs/doxygen/overviews/propgrid.h +++ b/docs/doxygen/overviews/propgrid.h @@ -958,4 +958,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(). */