all repos — openbox @ 7048f64f4580b8d43176ba2e3114c339c0013a40

openbox fork - make it a bit more like ryudo

dont use a const_iterator
Dana Jansens danakj@orodu.net
commit

7048f64f4580b8d43176ba2e3114c339c0013a40

parent

f9818bff717b306db942602b4e35d70903c6fc61

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/screen.ccsrc/screen.cc

@@ -619,7 +619,7 @@ // remove the client before looking so we can't run into ourselves

_stacking.remove(client); Client::List::iterator it = _stacking.begin(); - Client::List::const_iterator end = _stacking.end(); + const Client::List::iterator end = _stacking.end(); // the stacking list is from highest to lowest for (; it != end && (*it)->layer() > client->layer(); ++it);