| 239 | |
| 240 | STD_SETTER_CMD_IMPL_F_S(Background, SetFirstColor, QColor, firstColor, update) |
| 241 | void Background::setFirstColor(const QColor& color) { |
| 242 | Q_D(Background); |
| 243 | if (color != d->firstColor) |
| 244 | exec(new BackgroundSetFirstColorCmd(d, color, ki18n("%1: set background first color"))); |
| 245 | } |
| 246 | |
| 247 | STD_SETTER_CMD_IMPL_F_S(Background, SetSecondColor, QColor, secondColor, update) |
| 248 | void Background::setSecondColor(const QColor& color) { |
no outgoing calls
no test coverage detected