diff options
Diffstat (limited to 'dw/oofposfixedmgr.cc')
-rw-r--r-- | dw/oofposfixedmgr.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dw/oofposfixedmgr.cc b/dw/oofposfixedmgr.cc index f0d591a7..22cca983 100644 --- a/dw/oofposfixedmgr.cc +++ b/dw/oofposfixedmgr.cc @@ -23,8 +23,8 @@ namespace dw { namespace oof { -OOFPosFixedMgr::OOFPosFixedMgr (Textblock *containingBlock) : - OOFPositionedMgr (containingBlock) +OOFPosFixedMgr::OOFPosFixedMgr (OOFAwareWidget *container) : + OOFPositionedMgr (container) { DBG_OBJ_CREATE ("dw::OOFPosFixedMgr"); } @@ -35,22 +35,22 @@ OOFPosFixedMgr::~OOFPosFixedMgr () } -int OOFPosFixedMgr::cbBoxOffsetX () +int OOFPosFixedMgr::containerBoxOffsetX () { return 0; } -int OOFPosFixedMgr::cbBoxOffsetY () +int OOFPosFixedMgr::containerBoxOffsetY () { return 0; } -int OOFPosFixedMgr::cbBoxRestWidth () +int OOFPosFixedMgr::containerBoxRestWidth () { return 0; } -int OOFPosFixedMgr::cbBoxRestHeight () +int OOFPosFixedMgr::containerBoxRestHeight () { return 0; } |