From: Robin Dunn Date: Fri, 13 May 2005 00:00:38 +0000 (+0000) Subject: Destroy needs self parameter X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4bbf373b3d5c8632937b4a9d5f33db7c92a1c4c0?ds=inline Destroy needs self parameter git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_timer.i b/wxPython/src/_timer.i index 37461f1e50..69ea2a2674 100644 --- a/wxPython/src/_timer.i +++ b/wxPython/src/_timer.i @@ -116,7 +116,7 @@ public: int GetId() const; %pythoncode { - def Destroy(): + def Destroy(self): """NO-OP: Timers must be destroyed by normal refrence counting""" pass }