]> Dogcows Code - chaz/openbox/commitdiff
remove the add/remove/active_window debug cout's
authorDana Jansens <danakj@orodu.net>
Sat, 20 Jul 2002 20:29:10 +0000 (20:29 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 20 Jul 2002 20:29:10 +0000 (20:29 +0000)
util/epist/screen.cc

index 1ccf9833d0be96b75d3bb7b01718e6d32ca88489..78f3a9d0805b5c2a21707685075ce8552cc3b0cb 100644 (file)
@@ -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;
 }
 
 
This page took 0.02835 seconds and 4 git commands to generate.