| 865 | } |
| 866 | |
| 867 | void CtrlrPanelCanvas::setProperty (const Identifier& name, const var &newValue, const bool isUndoable) |
| 868 | { |
| 869 | if (isUndoable) |
| 870 | { |
| 871 | owner.setProperty (name, newValue, isUndoable); |
| 872 | } |
| 873 | else |
| 874 | { |
| 875 | owner.setProperty (name, newValue, false); |
| 876 | } |
| 877 | } |
| 878 | |
| 879 | const var &CtrlrPanelCanvas::getProperty (const Identifier& name) const |
| 880 | { |
no outgoing calls
no test coverage detected