| 161 | |
| 162 | STD_SETTER_CMD_IMPL_F_S(Image, SetHeight, int, height, scaleImage) |
| 163 | void Image::setHeight(int height) { |
| 164 | Q_D(Image); |
| 165 | if (height != d->height) |
| 166 | exec(new ImageSetHeightCmd(d, height, ki18n("%1: set height"))); |
| 167 | } |
| 168 | |
| 169 | STD_SETTER_CMD_IMPL_S(Image, SetKeepRatio, bool, keepRatio) |
| 170 | void Image::setKeepRatio(bool keepRatio) { |
no outgoing calls
no test coverage detected