- // force sel invalid if deleting current page - don't try to hide it
- m_selection = (m_selection == (int)page) ? wxNOT_FOUND : m_selection - 1;
+ // if deleting current page we shouldn't try to hide it
+ m_selection = m_selection == (int)page ? wxNOT_FOUND
+ : m_selection - 1;