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

Method removeRows

src/backend/core/AbstractColumn.cpp:339–343  ·  view source on GitHub ↗

* \brief Remove 'count' rows starting from row 'first' */

Source from the content-addressed store, hash-verified

337 * \brief Remove 'count' rows starting from row 'first'
338 */
339void AbstractColumn::removeRows(int first, int count) {
340 beginMacro(i18np("%1: remove 1 row", "%1: remove %2 rows", name(), count));
341 handleRowRemoval(first, count);
342 endMacro();
343}
344
345void AbstractColumn::handleRowRemoval(int first, int count) {
346 new AbstractColumnRemoveRowsCmd(this, first, count);

Callers 2

undoMethod · 0.45
redoMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected