Fixed warning

This commit is contained in:
enricoturri1966 2021-06-23 10:30:15 +02:00
parent d15055e547
commit 7a7108b2ad

View File

@ -658,7 +658,7 @@ void MainFrame::init_tabpanel()
#endif
#if ENABLE_VALIDATE_CUSTOM_GCODE
if (int old_selection = e.GetOldSelection();
old_selection != wxNOT_FOUND && old_selection < m_tabpanel->GetPageCount()) {
old_selection != wxNOT_FOUND && old_selection < static_cast<int>(m_tabpanel->GetPageCount())) {
Tab* old_tab = dynamic_cast<Tab*>(m_tabpanel->GetPage(old_selection));
if (old_tab)
old_tab->validate_custom_gcodes();