Remove unused elevation variables from main window

This commit is contained in:
Dan Paulat 2023-12-20 12:50:11 -06:00
parent a76816b14c
commit 3b15b11bad

View file

@ -90,10 +90,7 @@ public:
textEventManager_ {manager::TextEventManager::Instance()},
timelineManager_ {manager::TimelineManager::Instance()},
updateManager_ {manager::UpdateManager::Instance()},
maps_ {},
elevationCuts_ {},
elevationButtonsChanged_ {false},
resizeElevationButtons_ {false}
maps_ {}
{
mapProvider_ = map::GetMapProvider(
settings::GeneralSettings::Instance().map_provider().GetValue());
@ -195,13 +192,9 @@ public:
QMenu* radarSitePresetsMenu_ {nullptr};
std::vector<map::MapWidget*> maps_;
std::vector<float> elevationCuts_;
std::chrono::system_clock::time_point volumeTime_ {};
bool elevationButtonsChanged_;
bool resizeElevationButtons_;
public slots:
void UpdateMapParameters(double latitude,
double longitude,