diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-30 09:53:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-09-28 08:48:18 +0100 |
commit | d3f29153feb273e2e14375045323356bd550abb7 (patch) | |
tree | 2227b4bf3f7d3af92be696e600d433ee07f23f32 | |
parent | 8e351e393bd1c1f3d896b6ca706ae959dcba6628 (diff) |
n-rows doesn't matter, auto sizes depending on children
-rw-r--r-- | vcl/source/window/layout.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index 5d6b5870ac1e..b3789a5ba6b9 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -509,6 +509,8 @@ bool VclGrid::set_property(const rtl::OString &rKey, const rtl::OString &rValue) set_row_homogeneous(toBool(rValue)); else if (rKey.equalsL(RTL_CONSTASCII_STRINGPARAM("column-homogeneous"))) set_column_homogeneous(toBool(rValue)); + else if (rKey.equalsL(RTL_CONSTASCII_STRINGPARAM("n-rows"))) + /*nothing to do*/; else return Window::set_property(rKey, rValue); return true; |