| 3062 | } |
| 3063 | |
| 3064 | void ScriptingObjects::ScriptedLookAndFeel::CSSLaf::setPathAsVariable(simple_css::StyleSheet::Ptr ss, const Path& p, |
| 3065 | const Identifier& id) |
| 3066 | { |
| 3067 | MemoryOutputStream mos; |
| 3068 | p.writePathToStream(mos); |
| 3069 | mos.flush(); |
| 3070 | |
| 3071 | ss->setPropertyVariable(id, mos.getMemoryBlock().toBase64Encoding()); |
| 3072 | } |
| 3073 | |
| 3074 | void ScriptingObjects::ScriptedLookAndFeel::CSSLaf::drawSliderPackRightClickLine(Graphics& g, SliderPack& s, |
| 3075 | Line<float> lineToDraw) |
nothing calls this directly
no test coverage detected