| 29 | } |
| 30 | |
| 31 | bool ChangeSeparatorOffsetAction::doMerge(Action* _action) |
| 32 | { |
| 33 | ChangeSeparatorOffsetAction* action = dynamic_cast<ChangeSeparatorOffsetAction*>(_action); |
| 34 | if (action != nullptr) |
| 35 | { |
| 36 | if (action->getProperty() == getProperty()) |
| 37 | { |
| 38 | setValue(action->getValue()); |
| 39 | setNewValues(); |
| 40 | return true; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | return false; |
| 45 | } |
| 46 | |
| 47 | void ChangeSeparatorOffsetAction::storeRegionValues(DataPtr _skinData, VectorPairProperty& _store) |
| 48 | { |
nothing calls this directly
no test coverage detected