MCPcopy Create free account
hub / github.com/Kitware/VTK / Remove

Method Remove

Interaction/Widgets/vtkWidgetEventTranslator.cxx:108–120  ·  view source on GitHub ↗

Remove a mapping

Source from the content-addressed store, hash-verified

106
107 // Remove a mapping
108 int Remove(vtkEvent* VTKEvent)
109 {
110 std::list<EventItem>::iterator liter = this->begin();
111 for (; liter != this->end(); ++liter)
112 {
113 if (*VTKEvent == liter->VTKEvent)
114 {
115 this->erase(liter);
116 return 1;
117 }
118 }
119 return 0;
120 }
121 int Remove(vtkEventData* edata)
122 {
123 std::list<EventItem>::iterator liter = this->begin();

Callers 15

RequestInformationMethod · 0.45
RequestInformationMethod · 0.45
RequestInformationMethod · 0.45
RequestInformationMethod · 0.45
RequestInformationMethod · 0.45
ProcessRequestMethod · 0.45
RequestInformationMethod · 0.45
RequestInformationMethod · 0.45
RequestInformationMethod · 0.45
RequestInformationMethod · 0.45
RequestInformationMethod · 0.45
AdvertiseTimeStepsMethod · 0.45

Calls 3

beginMethod · 0.45
endMethod · 0.45
eraseMethod · 0.45