MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / __init__

Method __init__

gui/builtinViews/entityEditor.py:21–29  ·  view source on GitHub ↗
(self, parent, validator=None, *args, **kargs)

Source from the content-addressed store, hash-verified

19
20class TextEntryValidatedDialog(wx.TextEntryDialog):
21 def __init__(self, parent, validator=None, *args, **kargs):
22 wx.TextEntryDialog.__init__(self, parent, *args, **kargs)
23 self.parent = parent
24
25 # See https://github.com/wxWidgets/Phoenix/issues/611
26 self.txtctrl = self.FindWindowById(3000, self)
27
28 if validator:
29 self.txtctrl.SetValidator(validator())
30
31
32class EntityEditor(wx.Panel):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected