diff options
author | Sebastian Geerken <devnull@localhost> | 2014-02-22 17:55:28 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-02-22 17:55:28 +0100 |
commit | 96d12d948df227150aa6cb7fd10c8a9ac0ffb415 (patch) | |
tree | 7f5ace5e18835de6b3bf5bd6c8114a839fc29703 /dw/outofflowmgr.hh | |
parent | ad7d68e7c20d083198a209bdce5bd3b044c9b24f (diff) |
Corrected OOFM::getSize().
Diffstat (limited to 'dw/outofflowmgr.hh')
-rw-r--r-- | dw/outofflowmgr.hh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dw/outofflowmgr.hh b/dw/outofflowmgr.hh index 0f07c264..87dbe1b9 100644 --- a/dw/outofflowmgr.hh +++ b/dw/outofflowmgr.hh @@ -275,8 +275,7 @@ private: void getFloatsListsAndSide (Float *vloat, SortedFloatsVector **listSame, SortedFloatsVector **listOpp, Side *side); - void getFloatsSize (SortedFloatsVector *list, Side side, int *width, - int *height); + void getFloatsSize (Side side, int *width, int *height); void accumExtremes (SortedFloatsVector *list, Side side, int *oofMinWidth, int *oofMaxWidth); int getMinBorderDiff (Float *vloat, Side side); @@ -382,9 +381,8 @@ public: void tellPosition (core::Widget *widget, int yReq); - void getSize (int cbWidth, int cbHeight, int *oofWidth, int *oofHeight); - void getExtremes (int cbMinWidth, int cbMaxWidth, int *oofMinWidth, - int *oofMaxWidth); + void getSize (int *oofWidth, int *oofHeight); + void getExtremes (int *oofMinWidth, int *oofMaxWidth); int getLeftBorder (Textblock *textblock, int y, int h, Textblock *lastGB, int lastExtIndex); |