| 2910 | } |
| 2911 | |
| 2912 | void UIControlConnection::SetNext(UIControlConnection* next) |
| 2913 | { |
| 2914 | mControlEntry->SetNextTextEntry(next ? next->mControlEntry : nullptr); |
| 2915 | mUIControlPathEntry->SetNextTextEntry(next ? next->mUIControlPathEntry : nullptr); |
| 2916 | mValueEntry->SetNextTextEntry(next ? next->mValueEntry : nullptr); |
| 2917 | mMidiOffEntry->SetNextTextEntry(next ? next->mMidiOffEntry : nullptr); |
| 2918 | mMidiOnEntry->SetNextTextEntry(next ? next->mMidiOnEntry : nullptr); |
| 2919 | mIncrementalEntry->SetNextTextEntry(next ? next->mIncrementalEntry : nullptr); |
| 2920 | } |
| 2921 | |
| 2922 | bool UIControlConnection::PostRepatch(PatchCableSource* cableSource, bool fromUserClick) |
| 2923 | { |
no test coverage detected