| 140 | |
| 141 | STD_SETTER_CMD_IMPL_S(Note, SetBackgroundColor, QColor, backgroundColor) |
| 142 | void Note::setBackgroundColor(const QColor& color) { |
| 143 | Q_D(Note); |
| 144 | if (color != d->backgroundColor) |
| 145 | exec(new NoteSetBackgroundColorCmd(d, color, ki18n("%1: set background color"))); |
| 146 | } |
| 147 | |
| 148 | STD_SETTER_CMD_IMPL_S(Note, SetTextColor, QColor, textColor) |
| 149 | void Note::setTextColor(const QColor& color) { |
no outgoing calls
no test coverage detected