| 2012 | }; |
| 2013 | |
| 2014 | static std::unique_ptr<NWidgetBase> SmallMapDisplay() |
| 2015 | { |
| 2016 | std::unique_ptr<NWidgetBase> map_display = std::make_unique<NWidgetSmallmapDisplay>(); |
| 2017 | |
| 2018 | map_display = MakeNWidgets(_nested_smallmap_display, std::move(map_display)); |
| 2019 | map_display = MakeNWidgets(_nested_smallmap_bar, std::move(map_display)); |
| 2020 | return map_display; |
| 2021 | } |
| 2022 | |
| 2023 | static constexpr std::initializer_list<NWidgetPart> _nested_smallmap_widgets = { |
| 2024 | NWidget(NWID_HORIZONTAL), |
nothing calls this directly
no test coverage detected