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

Method __init__

gui/builtinViews/fittingView.py:119–124  ·  view source on GitHub ↗
(self, dropFn, *args, **kwargs)

Source from the content-addressed store, hash-verified

117# Drag'n'drop handler
118class FittingViewDrop(wx.DropTarget):
119 def __init__(self, dropFn, *args, **kwargs):
120 super(FittingViewDrop, self).__init__(*args, **kwargs)
121 self.dropFn = dropFn
122 # this is really transferring an EVE itemID
123 self.dropData = wx.TextDataObject()
124 self.SetDataObject(self.dropData)
125
126 def OnData(self, x, y, t):
127 if self.GetData():

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected