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

Method insertRows

src/backend/core/AbstractColumn.cpp:326–330  ·  view source on GitHub ↗

* \brief Insert some empty (or initialized with invalid values) rows */

Source from the content-addressed store, hash-verified

324 * \brief Insert some empty (or initialized with invalid values) rows
325 */
326void AbstractColumn::insertRows(int before, int count) {
327 beginMacro(i18np("%1: insert 1 row", "%1: insert %2 rows", name(), count));
328 handleRowInsertion(before, count);
329 endMacro();
330}
331
332void AbstractColumn::handleRowInsertion(int before, int count) {
333 new AbstractColumnInsertRowsCmd(this, before, count);

Callers 1

redoMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected