projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43c1f2a
)
rm debug prints
author
Dana Jansens
<danakj@orodu.net>
Mon, 10 Feb 2003 03:50:47 +0000
(
03:50
+0000)
committer
Dana Jansens
<danakj@orodu.net>
Mon, 10 Feb 2003 03:50:47 +0000
(
03:50
+0000)
src/client.cc
patch
|
blob
|
history
diff --git
a/src/client.cc
b/src/client.cc
index 9d6ebf104664e83f682e93063c1d634fbb028e03..091b095e64767bcccf13ca9d7c9af98109667235 100644
(file)
--- a/
src/client.cc
+++ b/
src/client.cc
@@
-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;
}