MCPcopy Create free account
hub / github.com/NatronGitHub/Natron / removeKnobFromList

Method removeKnobFromList

Engine/Knob.cpp:5076–5088  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5074}
5075
5076void
5077KnobHolder::removeKnobFromList(const KnobI* knob)
5078{
5079 QMutexLocker kk(&_imp->knobsMutex);
5080
5081 for (KnobsVec::iterator it = _imp->knobs.begin(); it != _imp->knobs.end(); ++it) {
5082 if (it->get() == knob) {
5083 _imp->knobs.erase(it);
5084
5085 return;
5086 }
5087 }
5088}
5089
5090void
5091KnobHolder::setPanelPointer(DockablePanelI* gui)

Callers 3

destroyReadNodeMethod · 0.80
destroyWriteNodeMethod · 0.80
setPagesOrderMethod · 0.80

Calls 4

beginMethod · 0.45
endMethod · 0.45
getMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected