| 299 | |
| 300 | STD_SETTER_CMD_IMPL_S(Matrix, SetNumericFormat, char, numericFormat) |
| 301 | void Matrix::setNumericFormat(char format) { |
| 302 | Q_D(Matrix); |
| 303 | if (format != d->numericFormat) |
| 304 | exec(new MatrixSetNumericFormatCmd(d, format, ki18n("%1: numeric format changed"))); |
| 305 | } |
| 306 | |
| 307 | STD_SETTER_CMD_IMPL_S(Matrix, SetPrecision, int, precision) |
| 308 | void Matrix::setPrecision(int precision) { |
no outgoing calls
no test coverage detected