]> Dogcows Code - chaz/openbox/commitdiff
rm debug prints
authorDana Jansens <danakj@orodu.net>
Mon, 10 Feb 2003 03:50:47 +0000 (03:50 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 10 Feb 2003 03:50:47 +0000 (03:50 +0000)
src/client.cc

index 9d6ebf104664e83f682e93063c1d634fbb028e03..091b095e64767bcccf13ca9d7c9af98109667235 100644 (file)
@@ -1585,15 +1585,9 @@ Client *Client::searchModalTree(Client *node, Client *skip)
   
   for (it = node->_transients.begin(); it != end; ++it) {
     if (*it == skip) continue; // circular?
-    printf("recursing\n");
     if ((ret = searchModalTree(*it, skip))) return ret; // got one
-    printf("trying this window\n");
-    if ((*it)->_modal) {
-          printf("found it\n");
-          return *it; // got one
-    }
+    if ((*it)->_modal) return *it; // got one
   }
-  printf("found none\n");
   return 0;
 }
 
This page took 0.031731 seconds and 4 git commands to generate.