xzlwbl / idapython

Automatically exported from code.google.com/p/idapython
Other
0 stars 0 forks source link

a patch for kernwin.i choose2 implementation #47

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
--- kernwin_org.i       2010-04-22 11:31:28.234375000 +0800
+++ kernwin.i   2010-04-22 11:31:54.906250000 +0800
@@ -2120,15 +2120,15 @@
             self.flags &= ~Choose2.CH_MODAL
         return _idaapi.choose2_show(self)

-    def Activate():
+    def Activate(self):
         """Activates a visible chooser"""
         return _idaapi.choose2_activate(self)

-    def Refresh():
+    def Refresh(self):
         """Causes the refresh callback to trigger"""
         return _idaapi.choose2_refresh(self)

-    def Close():
+    def Close(self):
         """Closes the chooser"""
         return _idaapi.choose2_close(self)

Original issue reported on code.google.com by hume...@gmail.com on 22 Apr 2010 at 3:33

GoogleCodeExporter commented 9 years ago
Applied in http://code.google.com/p/idapython/source/detail?r=293

Thanks for the patch!

Original comment by gergely.erdelyi on 26 Apr 2010 at 8:16