| 306 | |
| 307 | STD_SETTER_CMD_IMPL_S(Matrix, SetPrecision, int, precision) |
| 308 | void Matrix::setPrecision(int precision) { |
| 309 | Q_D(Matrix); |
| 310 | if (precision != d->precision) |
| 311 | exec(new MatrixSetPrecisionCmd(d, precision, ki18n("%1: precision changed"))); |
| 312 | } |
| 313 | |
| 314 | // TODO: make this undoable? |
| 315 | void Matrix::setHeaderFormat(Matrix::HeaderFormat format) { |
no outgoing calls
no test coverage detected