| 944 | } |
| 945 | |
| 946 | void 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 | /*! |
nothing calls this directly
no test coverage detected