all repos — fluxbox @ 9caf24483d1ee8ea0a7a83ab65a2950af01c6765

custom fork of the fluxbox windowmanager

const iterators in updateGnomeList
fluxgen fluxgen
commit

9caf24483d1ee8ea0a7a83ab65a2950af01c6765

parent

c8eeaea88ff11a30110de18a1ec32a31942bbd38

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

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

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Screen.cc,v 1.47 2002/04/28 19:54:10 fluxgen Exp $ +// $Id: Screen.cc,v 1.48 2002/05/07 13:54:42 fluxgen Exp $ //use GNU extensions #ifndef _GNU_SOURCE

@@ -1759,13 +1759,14 @@ }

//int num = getCurrentWorkspace()->getWindowList().size(); Window *wl = new Window[num]; + //start the iterator from begining workspace_it = workspacesList.begin(); int win=0; for (; workspace_it != workspace_it_end; ++workspace_it) { // Fill in array of window ID's - Workspace::Windows::iterator it = (*workspace_it)->getWindowList().begin(); - Workspace::Windows::iterator it_end = (*workspace_it)->getWindowList().end(); + Workspace::Windows::const_iterator it = (*workspace_it)->getWindowList().begin(); + Workspace::Windows::const_iterator it_end = (*workspace_it)->getWindowList().end(); for (; it != it_end; ++it) { //check if the window don't want to be visible in the list if (! ( (*it)->getGnomeHints() & FluxboxWindow::WIN_STATE_HIDDEN) ) {