summaryrefslogtreecommitdiff
path: root/cui
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 /cui
parent7d8169706b754d7617cf4a1065dc40e698fa0702 (diff)
ditch over complex property buckets
A fairly small fixed number of properties are needed, so simplify Change-Id: Iedce02264816666dbac53d7ad3cfb64be8e1c8bb
Diffstat (limited to 'cui')
-rw-r--r--cui/source/tabpages/chardlg.cxx30
1 files changed, 5 insertions, 25 deletions
diff --git a/cui/source/tabpages/chardlg.cxx b/cui/source/tabpages/chardlg.cxx
index 89a28fe2b4ca..d21457ba86f7 100644
--- a/cui/source/tabpages/chardlg.cxx
+++ b/cui/source/tabpages/chardlg.cxx
@@ -199,11 +199,7 @@ void SvxCharBasePage::makeWidgets(Window *pParent, const ResId& rResId,
m_pFontTypeFT = new FixedInfo(pParent, ResId( nResIdFontTypeFT, *rResId.GetResMgr()));
m_pPreviewWin = new SvxFontPrevWindow(pParent, ResId( nResIdPrewievWin, *rResId.GetResMgr()));
- rtl::OString sFill(RTL_CONSTASCII_STRINGPARAM("fill"));
- rtl::OString sExpand(RTL_CONSTASCII_STRINGPARAM("expand"));
-
- m_pPreviewWin->setChildProperty(sFill, true);
- m_pPreviewWin->setChildProperty(sExpand, true);
+ m_pPreviewWin->set_expand(true);
}
// -----------------------------------------------------------------------
@@ -295,11 +291,7 @@ SvxCharNamePage::SvxCharNamePage( Window* pParent, const SfxItemSet& rInSet )
, m_aGrid(&m_aBox)
, m_pImpl(new SvxCharNamePage_Impl)
{
- rtl::OString sFill(RTL_CONSTASCII_STRINGPARAM("fill"));
- rtl::OString sExpand(RTL_CONSTASCII_STRINGPARAM("expand"));
-
- m_aBox.setChildProperty(sFill, true);
- m_aBox.setChildProperty(sExpand, true);
+ m_aBox.set_expand(true);
m_pImpl->m_aNoStyleText = String( CUI_RES( STR_CHARNAME_NOSTYLE ) );
m_pImpl->m_aTransparentText = String( CUI_RES( STR_CHARNAME_TRANSPARENT ) );
@@ -1534,11 +1526,7 @@ SvxCharEffectsPage::SvxCharEffectsPage( Window* pParent, const SfxItemSet& rInSe
, m_aPositionLB(&m_aGrid, CUI_RES(LB_POSITION))
, m_aTransparentColorName(CUI_RES(STR_CHARNAME_TRANSPARENT))
{
- rtl::OString sFill(RTL_CONSTASCII_STRINGPARAM("fill"));
- rtl::OString sExpand(RTL_CONSTASCII_STRINGPARAM("expand"));
-
- m_aBox.setChildProperty(sFill, true);
- m_aBox.setChildProperty(sExpand, true);
+ m_aBox.set_expand(true);
m_aGrid.set_column_spacing(7);
m_aGrid.set_row_spacing(2);
@@ -2838,11 +2826,7 @@ SvxCharPositionPage::SvxCharPositionPage( Window* pParent, const SfxItemSet& rIn
, m_nSuperProp((sal_uInt8)DFLT_ESC_PROP)
, m_nSubProp((sal_uInt8)DFLT_ESC_PROP)
{
- rtl::OString sFill(RTL_CONSTASCII_STRINGPARAM("fill"));
- rtl::OString sExpand(RTL_CONSTASCII_STRINGPARAM("expand"));
-
- m_aBox.setChildProperty(sFill, true);
- m_aBox.setChildProperty(sExpand, true);
+ m_aBox.set_expand(true);
m_aPositionGrid.set_column_spacing(7);
m_aPositionGrid.set_row_spacing(2);
@@ -3609,11 +3593,7 @@ SvxCharTwoLinesPage::SvxCharTwoLinesPage(Window* pParent, const SfxItemSet& rInS
, m_nStartBracketPosition( 0 )
, m_nEndBracketPosition( 0 )
{
- rtl::OString sFill(RTL_CONSTASCII_STRINGPARAM("fill"));
- rtl::OString sExpand(RTL_CONSTASCII_STRINGPARAM("expand"));
-
- m_aBox.setChildProperty(sFill, true);
- m_aBox.setChildProperty(sExpand, true);
+ m_aBox.set_expand(true);
m_aGrid.set_column_spacing(7);
m_aGrid.set_row_spacing(2);