aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-09-26 17:36:23 +0200
committerSebastian Geerken <devnull@localhost>2014-09-26 17:36:23 +0200
commitae97a4ed13f0d249dd6181ab74290a2839300da7 (patch)
treef4d506bba300d3f601fd349c76a6d8cb3160b136
parenta8058f6e474f42faea7bc2d632d7b13754ba40ad (diff)
Fixed bug in OOFAwareWidgetIterator.
-rw-r--r--dw/oofawarewidget.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/oofawarewidget.hh b/dw/oofawarewidget.hh
index f8c8e214..9a80b9bb 100644
--- a/dw/oofawarewidget.hh
+++ b/dw/oofawarewidget.hh
@@ -88,7 +88,7 @@ protected:
{ other->setValues (sectionIndex, index); }
inline bool inFlow () { return sectionIndex == 0; }
- inline bool getInFlowIndex () { assert (inFlow ()); return index; }
+ inline int getInFlowIndex () { assert (inFlow ()); return index; }
void highlightOOF (int start, int end, core::HighlightLayer layer);
void unhighlightOOF (int direction, core::HighlightLayer layer);
void getAllocationOOF (int start, int end, core::Allocation *allocation);