diff options
author | Sebastian Geerken <devnull@localhost> | 2015-09-22 20:23:27 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-09-22 20:23:27 +0200 |
commit | d11f25560a31a68d56a72abc6d888bc8cf2634b7 (patch) | |
tree | 84a1fed01439eecf6551fba096edf6d91d5312f9 /dw/oofpositionedmgr.cc | |
parent | af3aa61519ae6c37dd4984100697f7aa032403de (diff) |
SRDOP: OOFFloatsMgr now regards positions relative to container. (Code compiles, not more!)
Diffstat (limited to 'dw/oofpositionedmgr.cc')
-rw-r--r-- | dw/oofpositionedmgr.cc | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/dw/oofpositionedmgr.cc b/dw/oofpositionedmgr.cc index 1ab7e06e..fb83cf15 100644 --- a/dw/oofpositionedmgr.cc +++ b/dw/oofpositionedmgr.cc @@ -287,39 +287,38 @@ bool OOFPositionedMgr::containerMustAdjustExtraSpace () return true; } -int OOFPositionedMgr::getLeftBorder (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) +int OOFPositionedMgr::getLeftBorder (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) { return 0; } -int OOFPositionedMgr::getRightBorder (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) +int OOFPositionedMgr::getRightBorder (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) { return 0; } -bool OOFPositionedMgr::hasFloatLeft (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) +bool OOFPositionedMgr::hasFloatLeft (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) { return false; } -bool OOFPositionedMgr::hasFloatRight (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) +bool OOFPositionedMgr::hasFloatRight (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) { return false; } -int OOFPositionedMgr::getLeftFloatHeight (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, +int OOFPositionedMgr::getLeftFloatHeight (int y, int h, OOFAwareWidget *lastGen, int lastExtIndex) { return 0; } -int OOFPositionedMgr::getRightFloatHeight (OOFAwareWidget *widget, int y, int h, +int OOFPositionedMgr::getRightFloatHeight (int y, int h, OOFAwareWidget *lastGen, int lastExtIndex) { |