| 209 | |
| 210 | STD_SETTER_CMD_IMPL_F_S(CartesianPlotLegend, SetLabelColor, QColor, labelColor, update) |
| 211 | void CartesianPlotLegend::setLabelColor(const QColor& color) { |
| 212 | Q_D(CartesianPlotLegend); |
| 213 | if (color != d->labelColor) |
| 214 | exec(new CartesianPlotLegendSetLabelColorCmd(d, color, ki18n("%1: set font color"))); |
| 215 | } |
| 216 | |
| 217 | STD_SETTER_CMD_IMPL_F_S(CartesianPlotLegend, SetLabelColumnMajor, bool, labelColumnMajor, retransform) |
| 218 | void CartesianPlotLegend::setLabelColumnMajor(bool columnMajor) { |
no outgoing calls
no test coverage detected