X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Fscreen.cc;h=6b7b08a005b145de6b64a37b6e3eb918a319ff35;hb=c6699031a0a87adf727fcf8c91ccf0203568a72d;hp=1086ce4ab861aa0a0844c9f250012fbd286c2773;hpb=a0cf45a0ef5f7e2cbf0833f4d8655131912400cc;p=chaz%2Fopenbox diff --git a/util/epist/screen.cc b/util/epist/screen.cc index 1086ce4a..6b7b08a0 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -120,12 +120,6 @@ void screen::processEvent(const XEvent &e) { assert(_managed); assert(e.xany.window == _root); - XWindow *window = 0; - if (e.xany.window != _root) { - window = findWindow(e); // find the window - assert(window); // we caught an event for a window we don't know about!? - } - switch (e.type) { case PropertyNotify: // root window @@ -348,16 +342,11 @@ void screen::updateClientList() { Window *rootclients = 0; unsigned long num = (unsigned) -1; if (! _xatom->getValue(_root, XAtom::net_client_list, XAtom::window, num, - &rootclients)) { - while (! _clients.empty()) { - delete _clients.front(); - _clients.erase(_clients.begin()); - } - if (rootclients) delete [] rootclients; - return; - } - - WindowList::iterator it, end = _clients.end(); + &rootclients)) + num = 0; + + WindowList::iterator it; + const WindowList::iterator end = _clients.end(); unsigned long i; // insert new clients after the active window @@ -376,12 +365,17 @@ void screen::updateClientList() { // remove clients that no longer exist for (it = _clients.begin(); it != end;) { - WindowList::iterator it2 = it++; + WindowList::iterator it2 = it; + ++it; + for (i = 0; i < num; ++i) if (**it2 == rootclients[i]) break; if (i == num) { // no longer exists //cout << "Removed window: 0x" << hex << (*it2)->window() << dec << endl; + // watch for the active window + if (it2 == _active) + _active = _clients.end(); delete *it2; _clients.erase(it2); }