From 39b5167c9663528589310f5a66eb553caa6ad409 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 27 Dec 2010 20:36:49 +0000 Subject: [PATCH] fix a comment git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@66472 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/pyevent.sip | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pyevent.sip b/src/pyevent.sip index 8e5dffbb..88968379 100644 --- a/src/pyevent.sip +++ b/src/pyevent.sip @@ -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. //---------------------------------------------------------------------------