diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-05-22 15:35:19 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-05-22 18:39:39 +0200 |
commit | 6924586821805b7a338c8e746141f51e3ba29560 (patch) | |
tree | 17bae166b25a921aa3d78ff59356f4b834d7a30e /cppu | |
parent | c7736a68035e25087d61d8ca4eddaf3de5d38c2c (diff) |
Fix typos
Change-Id: Idbe136fbfd222e8baad588dc36a2f9b7ce6996ec
Reviewed-on: https://gerrit.libreoffice.org/54590
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/typelib/typelib.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx index 8d842cc40a4f..ac3b23567897 100644 --- a/cppu/source/typelib/typelib.cxx +++ b/cppu/source/typelib/typelib.cxx @@ -497,7 +497,7 @@ bool complete(typelib_TypeDescription ** ppTypeDescr, bool initTables) { ::typelib_typedescription_register( &pTD ); // replaces incomplete one OSL_ASSERT( pTD == *ppTypeDescr ); // has to merge into existing one - // insert into the chache + // insert into the cache MutexGuard aGuard( rInit.getMutex() ); if( !rInit.pCache ) rInit.pCache.reset( new TypeDescriptionList_Impl ); @@ -1994,7 +1994,7 @@ extern "C" void SAL_CALL typelib_typedescription_getByName( // on demand is activated. typelib_typedescription_register( ppRet ); - // insert into the chache + // insert into the cache MutexGuard aGuard( rInit.getMutex() ); if( !rInit.pCache ) rInit.pCache.reset( new TypeDescriptionList_Impl ); @@ -2052,7 +2052,7 @@ extern "C" void SAL_CALL typelib_typedescriptionreference_new( // on demand is activated. typelib_typedescription_register( &pRet ); - // insert into the chache + // insert into the cache MutexGuard aGuard( rInit.getMutex() ); if( !rInit.pCache ) rInit.pCache.reset( new TypeDescriptionList_Impl ); |