Use pre-increment/decrement operators to move iterator in the loop (propgrid sample).
When the return value is ignored, the ++it/--it is never less efficient than the it++/it--.
This commit is contained in:
@@ -2406,7 +2406,7 @@ void FormMain::OnIterate3Click( wxCommandEvent& WXUNUSED(event) )
|
||||
for ( it = m_pPropGridManager->GetCurrentPage()->
|
||||
GetIterator( wxPG_ITERATE_DEFAULT, wxBOTTOM );
|
||||
!it.AtEnd();
|
||||
it-- )
|
||||
--it )
|
||||
{
|
||||
wxPGProperty* p = *it;
|
||||
|
||||
|
Reference in New Issue
Block a user