summaryrefslogtreecommitdiff
path: root/vcl/source/window/layout.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-25 11:24:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-26 06:49:31 +0000
commitfe1f1247fad782bdf43322532fdeb1ba9f03135a (patch)
treec8dfc79901c98bb69c3dd5e2a8ea5ab8cbbe6360 /vcl/source/window/layout.cxx
parent9c34797cc98030614b384b6ea0f233d59ae82253 (diff)
loplugin:expandablemethods in vcl
Change-Id: I1876e203d3a3a5fa36d83a9b282ba49429c1da2a Reviewed-on: https://gerrit.libreoffice.org/30261 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/window/layout.cxx')
-rw-r--r--vcl/source/window/layout.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx
index 884e5e04bfd7..e624ed55422b 100644
--- a/vcl/source/window/layout.cxx
+++ b/vcl/source/window/layout.cxx
@@ -1440,9 +1440,9 @@ bool VclGrid::set_property(const OString &rKey, const OString &rValue)
else if (rKey == "column-spacing")
set_column_spacing(rValue.toInt32());
else if (rKey == "row-homogeneous")
- set_row_homogeneous(toBool(rValue));
+ m_bRowHomogeneous = toBool(rValue);
else if (rKey == "column-homogeneous")
- set_column_homogeneous(toBool(rValue));
+ m_bColumnHomogeneous = toBool(rValue);
else if (rKey == "n-rows")
/*nothing to do*/;
else