summaryrefslogtreecommitdiffstats
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-08-15 11:19:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-09-28 08:48:35 +0100
commit0296b3a6948bec92687ab7960bd7ae4c8454e702 (patch)
tree6c8cddad1c6ee580ddb57d7076ed66ce9d663da6 /sfx2
parentmove from window.cxx to window2.cxx to build under windows (diff)
downloadcore-0296b3a6948bec92687ab7960bd7ae4c8454e702.tar.gz
core-0296b3a6948bec92687ab7960bd7ae4c8454e702.zip
ditch over complex property buckets
A fairly small fixed number of properties are needed, so simplify Change-Id: Iedce02264816666dbac53d7ad3cfb64be8e1c8bb
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/tabdlg.cxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index 37a8bf7d443c..003ce87f18e7 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -515,18 +515,13 @@ void SfxTabDialog::Init_Impl( sal_Bool bFmtFlag, const String* pUserButtonText,
*/
{
- rtl::OString sFill(RTL_CONSTASCII_STRINGPARAM("fill"));
- rtl::OString sExpand(RTL_CONSTASCII_STRINGPARAM("expand"));
- rtl::OString sPackType(RTL_CONSTASCII_STRINGPARAM("pack-type"));
-
fprintf(stderr, "BUILDER is %p\n", m_pUIBuilder);
m_pVBox = m_pUIBuilder ? static_cast<VclVBox*>(m_pUIBuilder->get_by_name("dialog-vbox1")) : NULL;
m_bOwnsVBox = m_pVBox == NULL;
if (m_bOwnsVBox)
{
m_pVBox = new VclVBox(this, false, 7);
- m_pVBox->setChildProperty(sFill, true);
- m_pVBox->setChildProperty(sExpand, true);
+ m_pVBox->set_expand(true);
}
m_pTabCtrl = m_pUIBuilder ? static_cast<TabControl*>(m_pUIBuilder->get_by_name(SAL_STRINGIFY(ID_TABCONTROL))) : NULL;
@@ -534,17 +529,13 @@ void SfxTabDialog::Init_Impl( sal_Bool bFmtFlag, const String* pUserButtonText,
if (m_bOwnsTabCtrl)
{
m_pTabCtrl = new TabControl(m_pVBox, ResId(ID_TABCONTROL, *rResId.GetResMgr()));
- m_pTabCtrl->setChildProperty(sFill, true);
- m_pTabCtrl->setChildProperty(sExpand, true);
+ m_pTabCtrl->set_expand(true);
}
m_pActionArea = m_pUIBuilder ? static_cast<VclHButtonBox*>(m_pUIBuilder->get_by_name("dialog-action_area1")) : NULL;
m_bOwnsActionArea = m_pActionArea == NULL;
if (m_bOwnsActionArea)
- {
m_pActionArea = new VclHButtonBox(m_pVBox);
- m_pActionArea->setChildProperty(sFill, true);
- }
m_pOKBtn = m_pUIBuilder ? static_cast<OKButton*>(m_pUIBuilder->get_by_name("ok")) : NULL;
m_bOwnsOKBtn = m_pOKBtn == NULL;