diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-26 02:18:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-26 02:18:09 +0300 |
commit | 1daf7c7dacf8e2b6aa11eb6a77353778e82ec0ec (patch) | |
tree | fe277b13902f78076114b703997dd3c7f208e794 /src | |
parent | 526b09b7670aad3e167ce2dac4e4dd6063ab73e0 (diff) | |
download | plus-1daf7c7dacf8e2b6aa11eb6a77353778e82ec0ec.tar.gz plus-1daf7c7dacf8e2b6aa11eb6a77353778e82ec0ec.tar.bz2 plus-1daf7c7dacf8e2b6aa11eb6a77353778e82ec0ec.tar.xz plus-1daf7c7dacf8e2b6aa11eb6a77353778e82ec0ec.zip |
Remove default parameters from layoutcell.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/layoutcell.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/widgets/layoutcell.h b/src/gui/widgets/layoutcell.h index e6404cfde..3d7d4d9d7 100644 --- a/src/gui/widgets/layoutcell.h +++ b/src/gui/widgets/layoutcell.h @@ -92,8 +92,10 @@ class LayoutCell notfinal * @see LayoutArray::place */ LayoutCell &place(Widget *const wg, - const int x, const int y, - const int w = 1, const int h = 1); + const int x, + const int y, + const int w, + const int h); /** * @see LayoutArray::matchColWidth |