| 475 | //! Return the text displayed in the given cell (needs explicit instantiation) |
| 476 | template<typename T> |
| 477 | QString Matrix::text(int row, int col) { |
| 478 | return QLocale().toString(cell<T>(row, col)); |
| 479 | } |
| 480 | template<> |
| 481 | QString Matrix::text<double>(int row, int col) { |
| 482 | Q_D(const Matrix); |