From: Robin Dunn Date: Fri, 6 Feb 2004 22:18:40 +0000 (+0000) Subject: Problem fixed, removed comments about it X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5a311edb0cc74100477fa7d7465aff25e580936c Problem fixed, removed comments about it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/StyledTextCtrl_1.py b/wxPython/demo/StyledTextCtrl_1.py index 821d85c73e..20695d129f 100644 --- a/wxPython/demo/StyledTextCtrl_1.py +++ b/wxPython/demo/StyledTextCtrl_1.py @@ -1,7 +1,6 @@ # # 11/21/2003 - Jeff Grimmett (grimmtooth@softhome.net) # -# o EVT_STC_DRAG_OVER event GetdragResult() is not an int # o wx.TheClipboard.Flush() generates a warning on program exit. # @@ -88,8 +87,6 @@ class MySTC(stc.StyledTextCtrl): def OnDragOver(self, evt): - #Todo: evt.GetdragResult() response is not an int - self.log.write( "OnDragOver: x,y=(%d, %d) pos: %d DragResult: %d\n" % (evt.GetX(), evt.GetY(), evt.GetPosition(), evt.GetDragResult())