| 107 | |
| 108 | template<typename T> |
| 109 | inline void SetIfNotNull(T * pValue, const T Value) |
| 110 | { |
| 111 | if (pValue == NULL) |
| 112 | return; |
| 113 | *pValue = Value; |
| 114 | } |
| 115 | |
| 116 | // This returns true if we're a spectral editing track. |
| 117 | inline bool isSpectralSelectionView(const ChannelView &channelView) { |
no outgoing calls
no test coverage detected