| 396 | |
| 397 | STD_SETTER_CMD_IMPL_F_S(TextLabel, SetTeXFont, QFont, teXFont, updateText) |
| 398 | void TextLabel::setTeXFont(const QFont& font) { |
| 399 | Q_D(TextLabel); |
| 400 | if (font != d->teXFont) |
| 401 | exec(new TextLabelSetTeXFontCmd(d, font, ki18n("%1: set TeX main font"))); |
| 402 | } |
| 403 | |
| 404 | STD_SETTER_CMD_IMPL_F_S(TextLabel, SetTeXFontColor, QColor, fontColor, updateText) |
| 405 | void TextLabel::setFontColor(const QColor color) { |
no outgoing calls
no test coverage detected