| 2790 | } |
| 2791 | |
| 2792 | bool ScriptingObjects::ScriptedLookAndFeel::Laf::addParentFloatingTile(Component& c, DynamicObject* obj) |
| 2793 | { |
| 2794 | auto id = getIdOfParentFloatingTile(c); |
| 2795 | |
| 2796 | if (id.isValid()) |
| 2797 | { |
| 2798 | obj->setProperty("parentType", id.toString()); |
| 2799 | return true; |
| 2800 | } |
| 2801 | |
| 2802 | return false; |
| 2803 | } |
| 2804 | |
| 2805 | void ScriptingObjects::ScriptedLookAndFeel::Laf::setColourOrBlack(DynamicObject* obj, const Identifier& id, Component& c, int colourId) |
| 2806 | { |
nothing calls this directly
no test coverage detected