]> Dogcows Code - chaz/openbox/commitdiff
reverse the if
authorDana Jansens <danakj@orodu.net>
Tue, 16 Jul 2002 22:01:17 +0000 (22:01 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 16 Jul 2002 22:01:17 +0000 (22:01 +0000)
src/Workspace.cc

index a231449dadda0b9c77d01ed2214d0b7c28b1f0b5..9bbc617f70b60b3a35da45a2b9ff1373c83a7986 100644 (file)
@@ -408,7 +408,7 @@ void Workspace::appendStackOrder(BlackboxWindowList &stack_order) const {
   BlackboxWindowList::const_reverse_iterator it = stackingList.rbegin();
   const BlackboxWindowList::const_reverse_iterator end = stackingList.rend();
   for (; it != end; ++it)
-    if ((*it)->isNormal())
+    if ((*it)->isNormal())
       stack_order.push_back(*it);
 }
   
This page took 0.023817 seconds and 4 git commands to generate.