MCPcopy Index your code
hub / github.com/Audio4Linux/JDSP4Linux / layer

Method layer

3rdparty/qcustomplot/qcustomplot.cpp:14663–14671  ·  view source on GitHub ↗

! Returns the layer with the specified \a name. If there is no layer with the specified name, \c nullptr is returned. Layer names are case-sensitive. \see addLayer, moveLayer, removeLayer */

Source from the content-addressed store, hash-verified

14661 \see addLayer, moveLayer, removeLayer
14662*/
14663QCPLayer *QCustomPlot::layer(const QString &name) const
14664{
14665 foreach (QCPLayer *layer, mLayers)
14666 {
14667 if (layer->name() == name)
14668 return layer;
14669 }
14670 return nullptr;
14671}
14672
14673/*! \overload
14674

Callers 5

setLayerMethod · 0.80
processRectSelectionMethod · 0.80
registerPlottableMethod · 0.80
registerItemMethod · 0.80
registerPolarGraphMethod · 0.80

Calls 2

sizeMethod · 0.45
atMethod · 0.45

Tested by

no test coverage detected