Applied patch (issue47) by humeafo

This commit is contained in:
elias.bachaalany 2010-04-23 10:52:53 +00:00
parent 3e0343daf5
commit 0acf7aa44a

View File

@ -2120,15 +2120,15 @@ class Choose2:
self.flags &= ~Choose2.CH_MODAL self.flags &= ~Choose2.CH_MODAL
return _idaapi.choose2_show(self) return _idaapi.choose2_show(self)
def Activate(): def Activate(self):
"""Activates a visible chooser""" """Activates a visible chooser"""
return _idaapi.choose2_activate(self) return _idaapi.choose2_activate(self)
def Refresh(): def Refresh(self):
"""Causes the refresh callback to trigger""" """Causes the refresh callback to trigger"""
return _idaapi.choose2_refresh(self) return _idaapi.choose2_refresh(self)
def Close(): def Close(self):
"""Closes the chooser""" """Closes the chooser"""
return _idaapi.choose2_close(self) return _idaapi.choose2_close(self)