diff options
author | Sebastian Geerken <devnull@localhost> | 2014-09-12 00:35:48 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-09-12 00:35:48 +0200 |
commit | 81e52eabc07c79384d89d7d863efe19dd95cbd93 (patch) | |
tree | 3a53256db2aa40dc3133f5b1fe07d8f7249fe026 /dw/textblock.hh | |
parent | 5b50f9e319263a730843be1aae5dfd7c549e1622 (diff) |
Moved some classes to namespace dw::oof.
Diffstat (limited to 'dw/textblock.hh')
-rw-r--r-- | dw/textblock.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dw/textblock.hh b/dw/textblock.hh index df2a8343..f7db7b1c 100644 --- a/dw/textblock.hh +++ b/dw/textblock.hh @@ -252,7 +252,7 @@ protected: PARENT_REF_OOFM_MASK = (1 << PARENT_REF_OOFM_BITS) - 1 }; Textblock *containingBlock[NUM_OOFM]; - OutOfFlowMgr *outOfFlowMgr[NUM_OOFM]; + oof::OutOfFlowMgr *outOfFlowMgr[NUM_OOFM]; inline bool isParentRefOOF (int parentRef) { return parentRef != -1 && (parentRef & PARENT_REF_OOFM_MASK); } @@ -271,7 +271,7 @@ protected: inline int getParentRefOOFIndex (int parentRef) { assert (isParentRefOOF (parentRef)); return (parentRef & PARENT_REF_OOFM_MASK) - 1; } - inline OutOfFlowMgr *getParentRefOutOfFlowMgr (int parentRef) + inline oof::OutOfFlowMgr *getParentRefOutOfFlowMgr (int parentRef) { return outOfFlowMgr[getParentRefOOFIndex (parentRef)]; } inline bool isWidgetOOF (Widget *widget) @@ -284,7 +284,7 @@ protected: { return getParentRefOOFSubRef (widget->parentRef); } inline int getWidgetOOFIndex (Widget *widget) { return getParentRefOOFIndex (widget->parentRef); } - inline OutOfFlowMgr *getWidgetOutOfFlowMgr (Widget *widget) + inline oof::OutOfFlowMgr *getWidgetOutOfFlowMgr (Widget *widget) { return getParentRefOutOfFlowMgr (widget->parentRef); } static inline bool testWidgetFloat (Widget *widget) |