| 154 | |
| 155 | STD_SETTER_CMD_IMPL_S(Note, SetTextFont, QFont, textFont) |
| 156 | void Note::setTextFont(const QFont& font) { |
| 157 | Q_D(Note); |
| 158 | if (font != d->textFont) |
| 159 | exec(new NoteSetTextFontCmd(d, font, ki18n("%1: set text font"))); |
| 160 | } |
| 161 | |
| 162 | QWidget* Note::view() const { |
| 163 | #ifndef SDK |
no outgoing calls
no test coverage detected