MCPcopy Index your code
hub / github.com/keystone-engine/keypatch / __init__

Method __init__

keypatch.py:1307–1321  ·  view source on GitHub ↗
(self, version, message)

Source from the content-addressed store, hash-verified

1305# Check-for-update form
1306class Update_Form(idaapi.Form):
1307 def __init__(self, version, message):
1308 # create Update form
1309 Form.__init__(self,
1310 r"""STARTITEM 0
1311BUTTON YES* Open Keypatch Website
1312KEYPATCH:: Check for update
1313
1314 {FormChangeCb}
1315 Your Keypatch is v%s
1316 %s
1317 """ %(version, message), {
1318 'FormChangeCb': Form.FormChangeCb(self.OnFormChange),
1319 })
1320
1321 self.Compile()
1322
1323 # callback to be executed when any form control changed
1324 def OnFormChange(self, fid):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected