fix a comment

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@66472 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2010-12-27 20:36:49 +00:00
parent 6ee75900a9
commit 39b5167c96

View File

@@ -11,10 +11,9 @@
/////////////////////////////////////////////////////////////////////////////
// These Event classes can be derived from in Python and passed through the
// event system without loosing anything. They do this by keeping a seaparate
// dictionary for storring any extra attributes set from Python code. When the
// event object is cloned then the clone gets a new reference to the same
// dictionary held by the original object.
// event system without loosing anything. They do this by copying any
// attributes added to the Python object for the original event over to the
// new cloned event in the Clone method.
//---------------------------------------------------------------------------