aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-12-23 12:08:36 +0100
committerSebastian Geerken <devnull@localhost>2014-12-23 12:08:36 +0100
commit806a0bdfe4c8199d6b8b684e53d84d4723e775be (patch)
treea7adc3036aeaf8b18131270555cbb75c1abf139e
parent68a9566b50bedd2366c065477dc953dcf098e19e (diff)
(Absolute) positions: bug fix.
-rw-r--r--dw/oofpositionedmgr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/oofpositionedmgr.cc b/dw/oofpositionedmgr.cc
index 334aed30..1e753bda 100644
--- a/dw/oofpositionedmgr.cc
+++ b/dw/oofpositionedmgr.cc
@@ -606,7 +606,7 @@ bool OOFPositionedMgr::isVPosComplete (Child *child)
bool OOFPositionedMgr::isHPosCalculable (Child *child, bool allocated)
{
return
- allocated || (isVPosComplete (child) && child->reference == container);
+ allocated || (isHPosComplete (child) && child->reference == container);
}
bool OOFPositionedMgr::isVPosCalculable (Child *child, bool allocated)