| 2829 | } |
| 2830 | |
| 2831 | void SpreadsheetView::dropColumnValues() { |
| 2832 | const auto& columns = selectedColumns(); |
| 2833 | if (columns.isEmpty()) |
| 2834 | return; |
| 2835 | |
| 2836 | auto* dlg = new DropValuesDialog(m_spreadsheet); |
| 2837 | dlg->setColumns(columns); |
| 2838 | dlg->exec(); |
| 2839 | } |
| 2840 | |
| 2841 | void SpreadsheetView::maskColumnValues() { |
| 2842 | const auto& columns = selectedColumns(); |
nothing calls this directly
no test coverage detected