diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-13 14:19:14 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-14 06:36:34 +0000 |
commit | ba974ccc8c49766542ddd727c95ecc5db1cff198 (patch) | |
tree | 8abc8f43d1f223f3a0b365c64970662226fd67c7 /formula/source | |
parent | 8cd15d5356e26952a43b06abf875c47a086bbdf1 (diff) |
com::sun::star->css in fpicker/
Change-Id: I211687bfeaf456e0f9639567bff401083011cd74
Reviewed-on: https://gerrit.libreoffice.org/19353
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'formula/source')
-rw-r--r-- | formula/source/core/api/FormulaOpCodeMapperObj.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/formula/source/core/api/FormulaOpCodeMapperObj.cxx b/formula/source/core/api/FormulaOpCodeMapperObj.cxx index 21b0f2261c44..eec37dfd23f7 100644 --- a/formula/source/core/api/FormulaOpCodeMapperObj.cxx +++ b/formula/source/core/api/FormulaOpCodeMapperObj.cxx @@ -45,25 +45,25 @@ FormulaOpCodeMapperObj::~FormulaOpCodeMapperObj() } ::sal_Int32 SAL_CALL FormulaOpCodeMapperObj::getOpCodeExternal() - throw (::com::sun::star::uno::RuntimeException, std::exception) + throw (css::uno::RuntimeException, std::exception) { return ocExternal; } ::sal_Int32 SAL_CALL FormulaOpCodeMapperObj::getOpCodeUnknown() - throw (::com::sun::star::uno::RuntimeException, std::exception) + throw (css::uno::RuntimeException, std::exception) { return FormulaCompiler::OpCodeMap::getOpCodeUnknown(); } -::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken > +css::uno::Sequence< css::sheet::FormulaToken > SAL_CALL FormulaOpCodeMapperObj::getMappings( - const ::com::sun::star::uno::Sequence< OUString >& rNames, + const css::uno::Sequence< OUString >& rNames, sal_Int32 nLanguage ) - throw ( ::com::sun::star::lang::IllegalArgumentException, - ::com::sun::star::uno::RuntimeException, std::exception) + throw ( css::lang::IllegalArgumentException, + css::uno::RuntimeException, std::exception) { FormulaCompiler::OpCodeMapPtr xMap = m_pCompiler->GetOpCodeMap( nLanguage); if (!xMap) @@ -72,11 +72,11 @@ SAL_CALL FormulaOpCodeMapperObj::getMappings( } -::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaOpCodeMapEntry > +css::uno::Sequence< css::sheet::FormulaOpCodeMapEntry > SAL_CALL FormulaOpCodeMapperObj::getAvailableMappings( sal_Int32 nLanguage, sal_Int32 nGroups ) - throw ( ::com::sun::star::lang::IllegalArgumentException, - ::com::sun::star::uno::RuntimeException, std::exception) + throw ( css::lang::IllegalArgumentException, + css::uno::RuntimeException, std::exception) { FormulaCompiler::OpCodeMapPtr xMap = m_pCompiler->GetOpCodeMap( nLanguage); if (!xMap) |