| 111 | } |
| 112 | |
| 113 | void SaveImageDialog::setSize(int x, int y) |
| 114 | { |
| 115 | QString * temp = new QString(); |
| 116 | temp->setNum(x); |
| 117 | size_x_->setText(*temp); |
| 118 | temp->setNum(y); |
| 119 | size_y_->setText(*temp); |
| 120 | setSizeRatio_(float(x) / float(y)); |
| 121 | } |
| 122 | |
| 123 | void SaveImageDialog::setSizeRatio_(float r) |
| 124 | { |
no test coverage detected