############################################################################## ###### SLOTs for changes triggered via QActions in the context menu ######## ##############################################################################
| 337 | // ###### SLOTs for changes triggered via QActions in the context menu ######## |
| 338 | // ############################################################################## |
| 339 | void LollipopPlot::orientationChangedSlot(QAction* action) { |
| 340 | if (action == orientationHorizontalAction) |
| 341 | this->setOrientation(Axis::Orientation::Horizontal); |
| 342 | else |
| 343 | this->setOrientation(Axis::Orientation::Vertical); |
| 344 | } |
| 345 | |
| 346 | // ############################################################################## |
| 347 | // ####################### Private implementation ############################### |
nothing calls this directly
no test coverage detected