| 411 | // Border |
| 412 | STD_SETTER_CMD_IMPL_F_S(TextLabel, SetBorderShape, TextLabel::BorderShape, borderShape, updateBorder) |
| 413 | void TextLabel::setBorderShape(TextLabel::BorderShape shape) { |
| 414 | Q_D(TextLabel); |
| 415 | if (shape != d->borderShape) |
| 416 | exec(new TextLabelSetBorderShapeCmd(d, shape, ki18n("%1: set border shape"))); |
| 417 | } |
| 418 | |
| 419 | // misc |
| 420 |
no outgoing calls
no test coverage detected