MainWindow: use pop_back() to remove last element of vector

pull/1075/head
f4exb 2021-12-04 10:54:19 +01:00
rodzic fcdeffa59c
commit bb1f833d02
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -683,7 +683,7 @@ void MainWindow::removeFeatureSet(unsigned int tabIndex)
if (tabIndex < m_featureUIs.size())
{
delete m_featureUIs[tabIndex];
m_featureUIs.erase(m_featureUIs.begin() + tabIndex);
m_featureUIs.pop_back();
m_mainCore->removeFeatureSet(tabIndex);
}
}
@ -693,7 +693,8 @@ void MainWindow::removeAllFeatureSets()
while (m_featureUIs.size() > 0)
{
delete m_featureUIs.back();
m_featureUIs.erase(std::prev(m_featureUIs.end()));
m_featureUIs.pop_back();
m_mainCore->removeLastFeatureSet();
}
}