summaryrefslogtreecommitdiff
path: root/xmloff/source/style/PageMasterImportPropMapper.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-01 08:43:33 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-01 08:43:33 +0200
commita0c46d2f20989bab56a7bc95409d0043a3f323c7 (patch)
tree3058ac0d31b01b4d4d2fb4ab79649a6490b7cd3a /xmloff/source/style/PageMasterImportPropMapper.cxx
parent2b1d22e1ff6ea5ef7a53783617a45309d7426f07 (diff)
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: Ic3764caeeb2cdec397071706845bf8517c848917
Diffstat (limited to 'xmloff/source/style/PageMasterImportPropMapper.cxx')
-rw-r--r--xmloff/source/style/PageMasterImportPropMapper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/style/PageMasterImportPropMapper.cxx b/xmloff/source/style/PageMasterImportPropMapper.cxx
index 7073ab64153b..de381ceaff65 100644
--- a/xmloff/source/style/PageMasterImportPropMapper.cxx
+++ b/xmloff/source/style/PageMasterImportPropMapper.cxx
@@ -315,28 +315,28 @@ void PageMasterImportPropertyMapper::finished(::std::vector< XMLPropertyState >&
{
sal_Bool bValue(sal_False);
uno::Any aAny;
- aAny.setValue( &bValue, ::getBooleanCppuType() );
+ aAny.setValue( &bValue, cppu::UnoType<bool>::get() );
xHeaderDynamic.reset(new XMLPropertyState(pHeaderHeight->mnIndex + 2, aAny));
}
if (pHeaderMinHeight)
{
sal_Bool bValue(sal_True);
uno::Any aAny;
- aAny.setValue( &bValue, ::getBooleanCppuType() );
+ aAny.setValue( &bValue, cppu::UnoType<bool>::get() );
xHeaderDynamic.reset(new XMLPropertyState(pHeaderMinHeight->mnIndex + 1, aAny));
}
if (pFooterHeight)
{
sal_Bool bValue(sal_False);
uno::Any aAny;
- aAny.setValue( &bValue, ::getBooleanCppuType() );
+ aAny.setValue( &bValue, cppu::UnoType<bool>::get() );
xFooterDynamic.reset(new XMLPropertyState(pFooterHeight->mnIndex + 2, aAny));
}
if (pFooterMinHeight)
{
sal_Bool bValue(sal_True);
uno::Any aAny;
- aAny.setValue( &bValue, ::getBooleanCppuType() );
+ aAny.setValue( &bValue, cppu::UnoType<bool>::get() );
xFooterDynamic.reset(new XMLPropertyState(pFooterMinHeight->mnIndex + 1, aAny));
}