| 246 | |
| 247 | STD_SETTER_CMD_IMPL_F_S(Background, SetSecondColor, QColor, secondColor, update) |
| 248 | void Background::setSecondColor(const QColor& color) { |
| 249 | Q_D(Background); |
| 250 | if (color != d->secondColor) |
| 251 | exec(new BackgroundSetSecondColorCmd(d, color, ki18n("%1: set background second color"))); |
| 252 | } |
| 253 | |
| 254 | STD_SETTER_CMD_IMPL_F_S(Background, SetFileName, QString, fileName, update) |
| 255 | void Background::setFileName(const QString& fileName) { |
no outgoing calls
no test coverage detected