| 27 | namespace OpenOrienteering { |
| 28 | |
| 29 | SegmentedButtonLayout::SegmentedButtonLayout() |
| 30 | : QHBoxLayout() |
| 31 | { |
| 32 | setContentsMargins(0, 0, 0, 0); |
| 33 | setSpacing(0); |
| 34 | } |
| 35 | |
| 36 | SegmentedButtonLayout::SegmentedButtonLayout(QWidget* parent) |
| 37 | : QHBoxLayout(parent) |
nothing calls this directly
no outgoing calls
no test coverage detected