diff options
author | Sebastian Geerken <devnull@localhost> | 2013-07-24 10:07:39 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-07-24 10:07:39 +0200 |
commit | be3bb69686a3a5e7f8d6c4004fbf2431744ae8a5 (patch) | |
tree | 133a1cc6ff47bc53c2b004bfc39dba282c3a29ef | |
parent | 5115c6b711cd1b85f2115aafd0d86976709f3d47 (diff) |
Method name changed.
-rw-r--r-- | dw/outofflowmgr.cc | 4 | ||||
-rw-r--r-- | dw/outofflowmgr.hh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dw/outofflowmgr.cc b/dw/outofflowmgr.cc index c952be84..6ade3947 100644 --- a/dw/outofflowmgr.cc +++ b/dw/outofflowmgr.cc @@ -939,7 +939,7 @@ void OutOfFlowMgr::tellFloatPosition (Widget *widget, int yReq) // checking for yReq is wrong: yReq may remain the same, when yReal // changes, e. g. when previous float has changes its size. if (vloat->yReal != oldY) - checkCoverage (vloat, oldY); + checkCoveragePosChanged (vloat, oldY); } bool OutOfFlowMgr::collides (Float *vloat, Float *other, int *yReal) @@ -970,7 +970,7 @@ bool OutOfFlowMgr::collides (Float *vloat, Float *other, int *yReal) } -void OutOfFlowMgr::checkCoverage (Float *vloat, int oldY) +void OutOfFlowMgr::checkCoveragePosChanged (Float *vloat, int oldY) { // Only this float has been changed (see tellPositionOrNot), so // only this float has to be tested against all textblocks. diff --git a/dw/outofflowmgr.hh b/dw/outofflowmgr.hh index 716c7d36..c373a50c 100644 --- a/dw/outofflowmgr.hh +++ b/dw/outofflowmgr.hh @@ -214,7 +214,7 @@ private: core::Widget *getAbsolutelyPositionedWidgetAtPoint (int x, int y, int level); bool collides (Float *vloat, Float *other, int *yReal); - void checkCoverage (Float *vloat, int oldY); + void checkCoveragePosChanged (Float *vloat, int oldY); void getFloatsLists (Float *vloat, SortedFloatsVector **listSame, SortedFloatsVector **listOpp); |