| 33 | } |
| 34 | |
| 35 | void CtrlrLuaObject::setPropertyColour(const String &propertyName, const Colour value) |
| 36 | { |
| 37 | if (Identifier::isValidIdentifier (propertyName)) |
| 38 | setProperty (propertyName, value.toString()); |
| 39 | } |
| 40 | |
| 41 | void CtrlrLuaObject::setPropertyInt(const String &propertyName, const int value) |
| 42 | { |
nothing calls this directly
no test coverage detected