! Copies all properties (e.g. color, fill, scatter style) of the \a other selection decorator to this selection decorator. */
| 10440 | this selection decorator. |
| 10441 | */ |
| 10442 | void QCPSelectionDecorator::copyFrom(const QCPSelectionDecorator *other) |
| 10443 | { |
| 10444 | setPen(other->pen()); |
| 10445 | setBrush(other->brush()); |
| 10446 | setScatterStyle(other->scatterStyle(), other->usedScatterProperties()); |
| 10447 | } |
| 10448 | |
| 10449 | /*! |
| 10450 | This method is called by all plottables' draw methods to allow custom selection decorations to be |
nothing calls this directly
no outgoing calls
no test coverage detected