all repos — openbox @ c258a4717a3ce354460d70f15675270b0188a50d

openbox fork - make it a bit more like ryudo

remove the add/remove/active_window debug cout's
Dana Jansens danakj@orodu.net
commit

c258a4717a3ce354460d70f15675270b0188a50d

parent

675d16c71a888d9e0fa96636ee473e5bca4a454a

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

jump to
M util/epist/screen.ccutil/epist/screen.cc

@@ -360,7 +360,7 @@ if (**it == rootclients[i])

break; if (it == end) { // didn't already exist if (doAddWindow(rootclients[i])) { - cout << "Added window: 0x" << hex << rootclients[i] << dec << endl; + //cout << "Added window: 0x" << hex << rootclients[i] << dec << endl; _clients.insert(insert_point, new XWindow(_epist, this, rootclients[i])); }

@@ -374,7 +374,7 @@ 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; + //cout << "Removed window: 0x" << hex << (*it2)->window() << dec << endl; delete *it2; _clients.erase(it2); }

@@ -397,9 +397,9 @@ break;

} _active = it; - cout << "Active window is now: "; - if (_active == _clients.end()) cout << "None\n"; - else cout << "0x" << hex << (*_active)->window() << dec << endl; + //cout << "Active window is now: "; + //if (_active == _clients.end()) cout << "None\n"; + //else cout << "0x" << hex << (*_active)->window() << dec << endl; }