! \internal propagates the parent plot initialization to all child elements, by calling \ref QCPLayerable::initializeParentPlot on them. */
| 3523 | QCPLayerable::initializeParentPlot on them. |
| 3524 | */ |
| 3525 | void QCPLayoutElement::parentPlotInitialized(QCustomPlot *parentPlot) |
| 3526 | { |
| 3527 | foreach (QCPLayoutElement* el, elements(false)) |
| 3528 | { |
| 3529 | if (!el->parentPlot()) |
| 3530 | el->initializeParentPlot(parentPlot); |
| 3531 | } |
| 3532 | } |
| 3533 | |
| 3534 | /*! \internal |
| 3535 |
nothing calls this directly
no outgoing calls
no test coverage detected