diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-11-17 22:42:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-09-28 08:48:02 +0100 |
commit | 57184a399172862edebcf23562a8886cb4a9e2c9 (patch) | |
tree | b3797b85c74d739bb1923c0ec7867079cf65bd0d /sw/source | |
parent | d3992cce471cf945caece722346522f4ca85f6f3 (diff) |
support a border-width
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/ui/dialog/wordcountdialog.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sw/source/ui/dialog/wordcountdialog.cxx b/sw/source/ui/dialog/wordcountdialog.cxx index beb0a4208f3f..2db3454a96c5 100644 --- a/sw/source/ui/dialog/wordcountdialog.cxx +++ b/sw/source/ui/dialog/wordcountdialog.cxx @@ -79,8 +79,13 @@ SwWordCountDialog::SwWordCountDialog(Window* pParent) rtl::OString sFill(RTL_CONSTASCII_STRINGPARAM("fill")); rtl::OString sExpand(RTL_CONSTASCII_STRINGPARAM("expand")); rtl::OString sPackType(RTL_CONSTASCII_STRINGPARAM("pack-type")); + rtl::OString sBorderWidth(RTL_CONSTASCII_STRINGPARAM("border-width")); dialog_vbox1.setChildProperty(sFill, true); + //TO-DO, when vbox1 belongs to dialog via builder, this becomes + //content-area-border on the dialog + dialog_vbox1.setChildProperty(sBorderWidth, sal_Int32(7)); + dialog_action_area1.setChildProperty(sFill, true); box1.setChildProperty(sFill, true); |