| 1008 | |
| 1009 | STD_SETTER_CMD_IMPL_F_S(Axis, SetLabelsColor, QColor, labelsColor, update) |
| 1010 | void Axis::setLabelsColor(const QColor& color) { |
| 1011 | Q_D(Axis); |
| 1012 | if (color != d->labelsColor) |
| 1013 | exec(new AxisSetLabelsColorCmd(d, color, ki18n("%1: set label color"))); |
| 1014 | } |
| 1015 | |
| 1016 | STD_SETTER_CMD_IMPL_F_S(Axis, SetLabelsFont, QFont, labelsFont, retransformTickLabelStrings) |
| 1017 | void Axis::setLabelsFont(const QFont& font) { |
no outgoing calls
no test coverage detected