| 154 | |
| 155 | STD_SETTER_CMD_IMPL_F_S(Image, SetWidth, int, width, scaleImage) |
| 156 | void Image::setWidth(int width) { |
| 157 | Q_D(Image); |
| 158 | if (width != d->width) |
| 159 | exec(new ImageSetWidthCmd(d, width, ki18n("%1: set width"))); |
| 160 | } |
| 161 | |
| 162 | STD_SETTER_CMD_IMPL_F_S(Image, SetHeight, int, height, scaleImage) |
| 163 | void Image::setHeight(int height) { |