dont use a const_iterator
authorDana Jansens <danakj@orodu.net>
Thu, 23 Jan 2003 02:30:58 +0000 (02:30 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 23 Jan 2003 02:30:58 +0000 (02:30 +0000)
src/screen.cc

index 41aa1eb..a7aded3 100644 (file)
@@ -594,7 +594,7 @@ void Screen::lowerWindow(Client *client)
   assert(!_stacking.empty()); // this would be bad
 
   Client::List::iterator it = --_stacking.end();
-  Client::List::const_iterator end = _stacking.begin();
+  const Client::List::iterator end = _stacking.begin();
 
   for (; it != end && (*it)->layer() < client->layer(); --it);
   if (*it == client) return;          // already the bottom, return