MCPcopy Create free account
hub / github.com/KDE/labplot / setColumnCells

Method setColumnCells

src/backend/matrix/Matrix.cpp:630–635  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

628//! Set the values in the given cells from a type T vector
629template<typename T>
630void Matrix::setColumnCells(int col, int first_row, int last_row, const QVector<T>& values) {
631 WAIT_CURSOR;
632 Q_D(Matrix);
633 exec(new MatrixSetColumnCellsCmd<T>(d, col, first_row, last_row, values));
634 RESET_CURSOR;
635}
636
637//! Return the values in the given cells as vector (needs explicit instantiation)
638template<typename T>

Callers 8

undoMethod · 0.45
undoMethod · 0.45
undoMethod · 0.45
undoMethod · 0.45
redoMethod · 0.45
undoMethod · 0.45
redoMethod · 0.45
redoMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected