(self, fid)
| 1065 | |
| 1066 | # callback to be executed when any form control changed |
| 1067 | def OnFormChange(self, fid): |
| 1068 | # make some controls read-only in FillRange mode |
| 1069 | self.EnableField(self.c_size, False) |
| 1070 | self.EnableField(self.c_addr_end, False) |
| 1071 | |
| 1072 | return self.update_patchform(fid) |
| 1073 | |
| 1074 | |
| 1075 | # Patcher form |
nothing calls this directly
no test coverage detected