| 195 | // ############################################################################## |
| 196 | STD_SETTER_CMD_IMPL_F_S(CartesianPlotLegend, SetLabelFont, QFont, labelFont, retransform) |
| 197 | void CartesianPlotLegend::setLabelFont(const QFont& font) { |
| 198 | Q_D(CartesianPlotLegend); |
| 199 | if (font != d->labelFont) |
| 200 | exec(new CartesianPlotLegendSetLabelFontCmd(d, font, ki18n("%1: set font"))); |
| 201 | } |
| 202 | |
| 203 | STD_SETTER_CMD_IMPL_F_S(CartesianPlotLegend, SetUsePlotColor, bool, usePlotColor, retransform) |
| 204 | void CartesianPlotLegend::setUsePlotColor(bool usePlotColor) { |
no outgoing calls
no test coverage detected