| 147 | |
| 148 | STD_SETTER_CMD_IMPL_S(Note, SetTextColor, QColor, textColor) |
| 149 | void Note::setTextColor(const QColor& color) { |
| 150 | Q_D(Note); |
| 151 | if (color != d->textColor) |
| 152 | exec(new NoteSetTextColorCmd(d, color, ki18n("%1: set text color"))); |
| 153 | } |
| 154 | |
| 155 | STD_SETTER_CMD_IMPL_S(Note, SetTextFont, QFont, textFont) |
| 156 | void Note::setTextFont(const QFont& font) { |
no outgoing calls
no test coverage detected