From d911663f0fa919fc66e10328482948a730e9c2e8 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 7 Jan 2017 08:59:09 +0100 Subject: Typo: Acess->Access Found thanks to Buovjaga Change-Id: I73e36f50a1fd393859ba775ab084a488047864a3 Reviewed-on: https://gerrit.libreoffice.org/32810 Tested-by: Jenkins Reviewed-by: Julien Nabet --- sc/source/filter/excel/excimp8.cxx | 2 +- sc/source/filter/excel/xistyle.cxx | 2 +- sc/source/ui/vba/vbaoleobjects.cxx | 2 +- sc/source/ui/vba/vbapalette.cxx | 2 +- sc/source/ui/vba/vbaworksheets.cxx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'sc/source') diff --git a/sc/source/filter/excel/excimp8.cxx b/sc/source/filter/excel/excimp8.cxx index 4619146ea976..5b50659be9d6 100644 --- a/sc/source/filter/excel/excimp8.cxx +++ b/sc/source/filter/excel/excimp8.cxx @@ -124,7 +124,7 @@ public: ::osl::MutexGuard aGuard( m_aMutex ); return ( !IdToOleNameHash.empty() ); } - // XNameAcess + // XNameAccess virtual uno::Any SAL_CALL getByName( const OUString& aName ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception) override { ::osl::MutexGuard aGuard( m_aMutex ); diff --git a/sc/source/filter/excel/xistyle.cxx b/sc/source/filter/excel/xistyle.cxx index 6c7287a7d4ec..e815cbaf339c 100644 --- a/sc/source/filter/excel/xistyle.cxx +++ b/sc/source/filter/excel/xistyle.cxx @@ -90,7 +90,7 @@ public: return uno::makeAny( sal_Int32( maColorData[ Index ] ) ); } - // Methods XElementAcess + // Methods XElementAccess virtual uno::Type SAL_CALL getElementType() throw (uno::RuntimeException, std::exception) override { return ::cppu::UnoType::get(); diff --git a/sc/source/ui/vba/vbaoleobjects.cxx b/sc/source/ui/vba/vbaoleobjects.cxx index 498957033e10..5ea0dfe40443 100644 --- a/sc/source/ui/vba/vbaoleobjects.cxx +++ b/sc/source/ui/vba/vbaoleobjects.cxx @@ -61,7 +61,7 @@ public: return uno::makeAny( vObjects[ Index ] ); } - // Methods XElementAcess + // Methods XElementAccess virtual uno::Type SAL_CALL getElementType() throw (uno::RuntimeException, std::exception) override { return cppu::UnoType::get(); diff --git a/sc/source/ui/vba/vbapalette.cxx b/sc/source/ui/vba/vbapalette.cxx index f59727ebdbe2..e6b577f2f3d5 100644 --- a/sc/source/ui/vba/vbapalette.cxx +++ b/sc/source/ui/vba/vbapalette.cxx @@ -66,7 +66,7 @@ public: return uno::makeAny( sal_Int32( spnDefColorTable8[ Index ] ) ); } - // Methods XElementAcess + // Methods XElementAccess virtual uno::Type SAL_CALL getElementType() throw (uno::RuntimeException, std::exception) override { return ::cppu::UnoType::get(); diff --git a/sc/source/ui/vba/vbaworksheets.cxx b/sc/source/ui/vba/vbaworksheets.cxx index 7340fc26ff03..7c7dad28ffad 100644 --- a/sc/source/ui/vba/vbaworksheets.cxx +++ b/sc/source/ui/vba/vbaworksheets.cxx @@ -90,7 +90,7 @@ public: // XElementAccess virtual uno::Type SAL_CALL getElementType( ) throw (uno::RuntimeException, std::exception) override { return cppu::UnoType::get(); } virtual sal_Bool SAL_CALL hasElements( ) throw (uno::RuntimeException, std::exception) override { return ( !mSheetMap.empty() ); } - // XNameAcess + // XNameAccess virtual uno::Any SAL_CALL getByName( const OUString& aName ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception) override { if ( !hasByName(aName) ) -- cgit