diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:41:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:41:16 +0200 |
commit | a55166cc25351f43d502f6b23d75df824c05f01a (patch) | |
tree | 27a7ccda07631ceb08bfb08381ee3623e90e6a7b /svl/source/config | |
parent | e1f3391a749873875e2e65bf9f36d242702b8006 (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I641a3a1e2cf2c789844940d7231015cb85e3b8bc
Diffstat (limited to 'svl/source/config')
-rw-r--r-- | svl/source/config/cjkoptions.cxx | 2 | ||||
-rw-r--r-- | svl/source/config/ctloptions.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/config/cjkoptions.cxx b/svl/source/config/cjkoptions.cxx index 8510fe0ef745..c396251dbbdc 100644 --- a/svl/source/config/cjkoptions.cxx +++ b/svl/source/config/cjkoptions.cxx @@ -246,7 +246,7 @@ void SvtCJKOptions_Impl::ImplCommit() Any* pValues = aValues.getArray(); sal_Int32 nRealCount = 0; - const Type& rType = ::getBooleanCppuType(); + const Type& rType = cppu::UnoType<bool>::get(); for(int nProp = 0; nProp < nOrgCount; nProp++) { switch(nProp) diff --git a/svl/source/config/ctloptions.cxx b/svl/source/config/ctloptions.cxx index b2e79acc54fe..93e6c53b54ed 100644 --- a/svl/source/config/ctloptions.cxx +++ b/svl/source/config/ctloptions.cxx @@ -150,7 +150,7 @@ void SvtCTLOptions_Impl::ImplCommit() Any* pValues = aValues.getArray(); sal_Int32 nRealCount = 0; - const uno::Type& rType = ::getBooleanCppuType(); + const uno::Type& rType = cppu::UnoType<bool>::get(); for ( int nProp = 0; nProp < nOrgCount; nProp++ ) { |