| 42 | CURVE_COLUMN_CONNECT(BarPlot, X, x, recalc) |
| 43 | |
| 44 | BarPlot::BarPlot(const QString& name) |
| 45 | : Plot(name, new BarPlotPrivate(this), AspectType::BarPlot) { |
| 46 | init(); |
| 47 | } |
| 48 | |
| 49 | BarPlot::BarPlot(const QString& name, BarPlotPrivate* dd) |
| 50 | : Plot(name, dd, AspectType::BarPlot) { |
nothing calls this directly
no outgoing calls
no test coverage detected