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

Method clearSelectedColumns

src/frontend/matrix/MatrixView.cpp:946–955  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

944}
945
946void MatrixView::clearSelectedColumns() {
947 WAIT_CURSOR;
948 m_matrix->beginMacro(i18n("%1: clear selected column(s)", m_matrix->name()));
949 for (int i = 0; i < m_matrix->columnCount(); i++) {
950 if (isColumnSelected(i, false))
951 m_matrix->clearColumn(i);
952 }
953 m_matrix->endMacro();
954 RESET_CURSOR;
955}
956
957// ############################## rows related slots ############################
958/*!

Callers

nothing calls this directly

Calls 5

beginMacroMethod · 0.80
clearColumnMethod · 0.80
endMacroMethod · 0.80
nameMethod · 0.45
columnCountMethod · 0.45

Tested by

no test coverage detected