diff options
author | Sebastian Geerken <devnull@localhost> | 2014-09-12 01:40:07 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-09-12 01:40:07 +0200 |
commit | a42d8297257c9d68062811467a3bd2aaab7c16ff (patch) | |
tree | 41a0c822f10393874dbd39a0d6a6666092f1c0e1 /dw/oofposfixedmgr.cc | |
parent | 81e52eabc07c79384d89d7d863efe19dd95cbd93 (diff) |
OOFAwareWidget (instead of Textblock): start.
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; } |