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
This commit is contained in:
Jaakko Salli 2009-06-10 20:51:25 +00:00
parent 27c1f235ba
commit 0cd4552a99

View File

@ -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().
*/