* This method is a wrapper to emit the pointModified() signal and is called whenever a change * is made to a Control Point. * * @param point The ControlPoint* that was modified. * @param type The ControlPoint::ModType indicating which modification occured. * @param oldValue The oldValue before the change. * @param newValue The new value that the change incorporated. */
| 163 | * @param newValue The new value that the change incorporated. |
| 164 | */ |
| 165 | void ControlNet::emitPointModified(ControlPoint *point, ControlPoint::ModType type, QVariant oldValue, QVariant newValue) { |
| 166 | emit pointModified(point, type, oldValue, newValue); |
| 167 | } |
| 168 | |
| 169 | |
| 170 | /** |
no outgoing calls
no test coverage detected