summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-20 20:29:10 +0000
committerDana Jansens <danakj@orodu.net>2002-07-20 20:29:10 +0000
commitc258a4717a3ce354460d70f15675270b0188a50d (patch)
tree52376d13b51fd4d2666e5321c22102d685b08d42
parent675d16c71a888d9e0fa96636ee473e5bca4a454a (diff)
remove the add/remove/active_window debug cout's
-rw-r--r--util/epist/screen.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/epist/screen.cc b/util/epist/screen.cc
index 1ccf9833..78f3a9d0 100644
--- a/util/epist/screen.cc
+++ b/util/epist/screen.cc
@@ -360,7 +360,7 @@ void screen::updateClientList() {
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 @@ void screen::updateClientList() {
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 @@ void screen::updateActiveWindow() {
}
_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;
}