############################################################################## ###### SLOTs for changes triggered via QActions in the context menu ######## ##############################################################################
| 624 | // ###### SLOTs for changes triggered via QActions in the context menu ######## |
| 625 | // ############################################################################## |
| 626 | void BoxPlot::orientationChangedSlot(QAction* action) { |
| 627 | if (action == orientationHorizontalAction) |
| 628 | this->setOrientation(Axis::Orientation::Horizontal); |
| 629 | else |
| 630 | this->setOrientation(Axis::Orientation::Vertical); |
| 631 | } |
| 632 | |
| 633 | // ############################################################################## |
| 634 | // ####################### Private implementation ############################### |
nothing calls this directly
no test coverage detected