| 232 | |
| 233 | STD_SETTER_CMD_IMPL_F_S(Background, SetBrushStyle, Qt::BrushStyle, brushStyle, update) |
| 234 | void Background::setBrushStyle(Qt::BrushStyle style) { |
| 235 | Q_D(Background); |
| 236 | if (style != d->brushStyle) |
| 237 | exec(new BackgroundSetBrushStyleCmd(d, style, ki18n("%1: background brush style changed"))); |
| 238 | } |
| 239 | |
| 240 | STD_SETTER_CMD_IMPL_F_S(Background, SetFirstColor, QColor, firstColor, update) |
| 241 | void Background::setFirstColor(const QColor& color) { |
no outgoing calls
no test coverage detected