| 309 | } |
| 310 | |
| 311 | void Column::pasteData() { |
| 312 | #ifndef SDK |
| 313 | auto* spreadsheet = dynamic_cast<Spreadsheet*>(parentAspect()); |
| 314 | if (spreadsheet) |
| 315 | static_cast<SpreadsheetView*>(spreadsheet->view())->pasteIntoSelection(); |
| 316 | #endif |
| 317 | } |
| 318 | |
| 319 | void Column::addUsedInPlots(QVector<CartesianPlot*>& plotAreas) { |
| 320 | const Project* project = this->project(); |
no test coverage detected