prefix ++ is faster than postfix ++

prefix ++ is faster than postfix ++
wilder-work
Jaime Torres 14 years ago
parent 00d5823c54
commit 6618725ac4
  1. 2
      undostack.cpp

@ -145,7 +145,7 @@ UndoStack::folderDestroyed( const Akonadi::Collection &folder)
it = mStack.erase( it );
}
else
it++;
++it;
}
emit undoStackChanged();
}

Loading…
Cancel
Save