From c9a0cbc856281b8f4e8bafb570127e291b282629 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Wed, 19 Aug 2020 13:25:12 +0200 Subject: Fix typos Change-Id: I58c510121a9f535b2a31854f10b5f6535554d379 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100988 Tested-by: Jenkins Reviewed-by: Julien Nabet --- cppuhelper/source/factory.cxx | 2 +- desktop/source/deployment/manager/dp_extensionmanager.cxx | 2 +- desktop/source/deployment/registry/package/dp_package.cxx | 2 +- editeng/source/editeng/impedit3.cxx | 2 +- filter/qa/complex/filter/detection/typeDetection/files.csv | 2 +- filter/source/graphicfilter/idxf/dxfentrd.cxx | 2 +- filter/source/msfilter/msdffimp.cxx | 2 +- filter/source/xslt/export/spreadsheetml/table.xsl | 2 +- forms/source/component/Filter.cxx | 2 +- framework/qa/complex/framework/recovery/RecoveryTest.java | 2 +- framework/source/inc/accelerators/presethandler.hxx | 4 ++-- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cppuhelper/source/factory.cxx b/cppuhelper/source/factory.cxx index 8a951033cc08..1d997146f099 100644 --- a/cppuhelper/source/factory.cxx +++ b/cppuhelper/source/factory.cxx @@ -688,7 +688,7 @@ Reference< XInterface > ORegistryFactoryHelper::createInstanceWithArgumentsAndCo } if( xModuleFactoryDepr.is() ) { - SAL_INFO_IF(xContext.is(), "cppuhelper", "ignoring context calling ORegistryFactoryHelper::createInstaceWithArgumentsAndContext()!"); + SAL_INFO_IF(xContext.is(), "cppuhelper", "ignoring context calling ORegistryFactoryHelper::createInstanceWithArgumentsAndContext()!"); return xModuleFactoryDepr->createInstanceWithArguments( rArguments ); } diff --git a/desktop/source/deployment/manager/dp_extensionmanager.cxx b/desktop/source/deployment/manager/dp_extensionmanager.cxx index c9ecf7d2123c..2f82d3d500ad 100644 --- a/desktop/source/deployment/manager/dp_extensionmanager.cxx +++ b/desktop/source/deployment/manager/dp_extensionmanager.cxx @@ -862,7 +862,7 @@ void ExtensionManager::removeExtension( } catch (...) { excOccurred1 = ::cppu::getCaughtException(); css::deployment::DeploymentException exc( - "Extension Manager: exception during removeEtension", + "Extension Manager: exception during removeExtension", static_cast(this), excOccurred1); excOccurred1 <<= exc; } diff --git a/desktop/source/deployment/registry/package/dp_package.cxx b/desktop/source/deployment/registry/package/dp_package.cxx index a6d099db9f5c..e0adb4395f4c 100644 --- a/desktop/source/deployment/registry/package/dp_package.cxx +++ b/desktop/source/deployment/registry/package/dp_package.cxx @@ -691,7 +691,7 @@ bool BackendImpl::PackageImpl::checkLicense( return 0; //always return LICENSE as long as the user did not accept the license - //so that XExtensonManager::checkPrerequisitesAndEnable will again + //so that XExtensionManager::checkPrerequisitesAndEnable will again //check the license if (!checkPlatform(xCmdEnv)) return deployment::Prerequisites::PLATFORM | diff --git a/editeng/source/editeng/impedit3.cxx b/editeng/source/editeng/impedit3.cxx index eba85963052e..0caebc3ae342 100644 --- a/editeng/source/editeng/impedit3.cxx +++ b/editeng/source/editeng/impedit3.cxx @@ -1927,7 +1927,7 @@ void ImpEditEngine::ImpBreakLine( ParaPortion* pParaPortion, EditLine* pLine, Te sal_Int32 nWordLen = nWordEnd - nWordStart; if ( ( nWordEnd >= nMaxBreakPos ) && ( nWordLen > 3 ) ) { - // May happen, because getLineBreak may differ from getWordBoudary with DICTIONARY_WORD + // May happen, because getLineBreak may differ from getWordBoundary with DICTIONARY_WORD const OUString aWord = pNode->GetString().copy(nWordStart, nWordLen); sal_Int32 nMinTrail = nWordEnd-nMaxBreakPos+1; //+1: Before the dickey letter Reference< XHyphenatedWord > xHyphWord; diff --git a/filter/qa/complex/filter/detection/typeDetection/files.csv b/filter/qa/complex/filter/detection/typeDetection/files.csv index 55fe02bd699b..b882ea1179ca 100644 --- a/filter/qa/complex/filter/detection/typeDetection/files.csv +++ b/filter/qa/complex/filter/detection/typeDetection/files.csv @@ -3,7 +3,7 @@ fileAlias;fileURL;defaultFileType;streamFileType #** N O T E #** #** The detection for template filter and writer_text_encoded -#** will be changed on following childworkspsace +#** will be changed on following childworkspace #** #************************************************************** ################################### diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx b/filter/source/graphicfilter/idxf/dxfentrd.cxx index 883dcc991818..f1bc5c883fb7 100644 --- a/filter/source/graphicfilter/idxf/dxfentrd.cxx +++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx @@ -789,7 +789,7 @@ void DXFDimensionEntity::EvaluateGroup(DXFGroupReader & rDGR) } } -//---------------------------- DXFEntites -------------------------------------- +//---------------------------- DXFEntities -------------------------------------- void DXFEntities::Read(DXFGroupReader & rDGR) { diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx index ea37cbe45b47..08657c686369 100644 --- a/filter/source/msfilter/msdffimp.cxx +++ b/filter/source/msfilter/msdffimp.cxx @@ -1739,7 +1739,7 @@ void DffPropertyReader::ApplyCustomShapeGeometryAttributes( SvStream& rIn, SfxIt aProp.Value <<= fSecondLightLevel; aExtrusionPropVec.push_back( aProp ); } - // "FirtstLightDirection" + // "FirstLightDirection" if ( IsProperty( DFF_Prop_c3DKeyX ) || IsProperty( DFF_Prop_c3DKeyY ) || IsProperty( DFF_Prop_c3DKeyZ ) ) { double fLightX = static_cast(static_cast(GetPropertyValue( DFF_Prop_c3DKeyX, 50000 ))); diff --git a/filter/source/xslt/export/spreadsheetml/table.xsl b/filter/source/xslt/export/spreadsheetml/table.xsl index d450e6502a3c..1c2c13809554 100644 --- a/filter/source/xslt/export/spreadsheetml/table.xsl +++ b/filter/source/xslt/export/spreadsheetml/table.xsl @@ -715,7 +715,7 @@ 1 - + diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx index 47095670b6cc..191173f276e4 100644 --- a/forms/source/component/Filter.cxx +++ b/forms/source/component/Filter.cxx @@ -297,7 +297,7 @@ namespace frm OUString sText( aText.makeStringAndClear() ); sal_Int32 nMarkerPos( sText.indexOf( sExpressionMarker ) ); OSL_ENSURE( nMarkerPos == 0, "OFilterControl::itemStateChanged: unsupported boolean comparison mode!" ); - // If this assertion fails, then getBoleanComparisonPredicate created a predicate which + // If this assertion fails, then getBooleanComparisonPredicate created a predicate which // does not start with the expression we gave it. The only known case is when // the comparison mode is ACCESS_COMPAT, and the value is TRUE. In this case, // the expression is rather complex. diff --git a/framework/qa/complex/framework/recovery/RecoveryTest.java b/framework/qa/complex/framework/recovery/RecoveryTest.java index 2f5882899bfa..ede07b4863e8 100644 --- a/framework/qa/complex/framework/recovery/RecoveryTest.java +++ b/framework/qa/complex/framework/recovery/RecoveryTest.java @@ -170,7 +170,7 @@ public class RecoveryTest extends ComplexTestCase { } /** - * This function starts an office instance. It uses the AppExecutionCommad parameter. + * This function starts an office instance. It uses the AppExecutionCommand parameter. * @return TRUE if office is connected otherwise FALSE */ private boolean connect(){ diff --git a/framework/source/inc/accelerators/presethandler.hxx b/framework/source/inc/accelerators/presethandler.hxx index 05aaf6eb02fc..f30278696cfb 100644 --- a/framework/source/inc/accelerators/presethandler.hxx +++ b/framework/source/inc/accelerators/presethandler.hxx @@ -81,7 +81,7 @@ class PresetHandler where the current configuration set exists. @descr Note: If this preset handler works in document mode - this member is meaned relative to the document root ... + this member is meant relative to the document root... not to the share layer root! Further is defined, that m_xWorkingStorageUser @@ -97,7 +97,7 @@ class PresetHandler where the current configuration set exists. @descr Note: If this preset handler works in document mode - this member is meaned relative to the document root ... + this member is meant relative to the document root... not to the user layer root! Further is defined, that m_xWorkingStorageUser -- cgit