diff options
author | Sebastian Geerken <devnull@localhost> | 2014-08-17 20:23:38 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-08-17 20:23:38 +0200 |
commit | caefc4a3538c0ce9fd00fafc55276dfeee68a1a8 (patch) | |
tree | 52977123aa57d63deb8960a8bd85b08978466966 /dw/widget.hh | |
parent | 5ddd656a1a692aa0a8eacf89ee6055c9b9b79525 (diff) |
Some corrections on recent work.
Diffstat (limited to 'dw/widget.hh')
-rw-r--r-- | dw/widget.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dw/widget.hh b/dw/widget.hh index 9b25fbc8..0f3e2d37 100644 --- a/dw/widget.hh +++ b/dw/widget.hh @@ -432,11 +432,11 @@ public: void (*splitHeightFun) (int, int*, int*)); void correctExtremes (Extremes *extremes); int calcWidth (style::Length cssValue, int refWidth, Widget *refWidget, - int limitMinWidth); + int limitMinWidth, bool forceValue); void calcFinalWidth (style::Style *style, int refWidth, Widget *refWidget, - int limitMinWidth, int *finalWidth); + int limitMinWidth, bool forceValue, int *finalWidth); int calcHeight (style::Length cssValue, bool usePercentage, int refHeight, - Widget *refWidget); + Widget *refWidget, bool forceValue); virtual int applyPerWidth (int containerWidth, style::Length perWidth); virtual int applyPerHeight (int containerHeight, style::Length perHeight); |