Fix typos

Change-Id: I7eacff7dd5bf1e8ae70d2bca0bc852b8a45eeeec
Reviewed-on: https://gerrit.libreoffice.org/78428
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Andrea Gelmini
2019-09-03 00:19:40 +02:00
committed by Julien Nabet
parent 5785fc0683
commit eced5a20b5
8 changed files with 9 additions and 9 deletions

View File

@@ -1165,7 +1165,7 @@ void Desktop::Exception(ExceptionCategory nCategory)
( !rArgs.IsNoRestore() ) && // some use cases of office must work without recovery
( !rArgs.IsHeadless() ) &&
( nCategory != ExceptionCategory::UserInterface ) && // recovery can't work without UI ... but UI layer seems to be the reason for this crash
( Application::IsInExecute() ) // crashes during startup and shutdown should be ignored (they indicates a corrupt installation ...)
( Application::IsInExecute() ) // crashes during startup and shutdown should be ignored (they indicate a corrupted installation...)
);
if ( bAllowRecoveryAndSessionManagement )
{

View File

@@ -2866,7 +2866,7 @@ void DffPropertyReader::ImportGradientColor( SfxItemSet& aSet,MSO_FillType eMSO_
nChgColors ^= 1;
}
//if the type is linear or axial, just save focus to nFocusX and nFocusY for export
//Core function does no need them. They serves for rect gradient(CenterXY).
//Core function does no need them. They serve for rect gradient(CenterXY).
sal_uInt16 nFocusX = static_cast<sal_uInt16>(nFocus);
sal_uInt16 nFocusY = static_cast<sal_uInt16>(nFocus);

View File

@@ -159,7 +159,7 @@ public:
* all operations are made relative to this access point.
*
* Further this method must be used only with configuration set's.
* Atomic keys can't be "created" ... they "exists every time".
* Atomic keys can't be "created"... they "exist every time".
*
* @param xCFG
* the configuration root, where sRelPathToSet should be interpreted

View File

@@ -84,7 +84,7 @@ published service StorageStream
<p>
When a stream is disposed all the changes that were done for it are
automatically flashed, so that they becomes visible from parent
automatically flashed, so that they become visible from parent
storage. It is also possible to flash the stream explicitly.
</p>

View File

@@ -127,7 +127,7 @@ void SAL_CALL ScCellCursorObj::collapseToCurrentArray()
}
}
// that's a Bug, that this assertion comes; the API Reference says, that
// if there is no Matrix, the Range is left unchanged; they says nothing
// if there is no Matrix, the Range is left unchanged; they say nothing
// about an exception
/*if (!bFound)
{

View File

@@ -533,7 +533,7 @@ ScSubTotalDescriptorBase::~ScSubTotalDescriptorBase()
{
}
// XSubTotalDesctiptor
// XSubTotalDescriptor
ScSubTotalFieldObj* ScSubTotalDescriptorBase::GetObjectByIndex_Impl(sal_uInt16 nIndex)
{

View File

@@ -93,12 +93,12 @@ static UScriptCode lcl_getHardCodedScriptNameForFont (const OutputDevice &rDevic
}
else if (rName == "Hannotate TC" || rName == "HanziPen TC" || rName == "Heiti TC" || rName == "Weibei TC")
{
// These fonts claim support for ARMENIAN and a bunch of other stuff they doesn't support
// These fonts claim support for ARMENIAN and a bunch of other stuff they don't support
return USCRIPT_TRADITIONAL_HAN;
}
else if (rName == "Hannotate SC" || rName == "HanziPen SC" || rName == "Heiti SC" || rName == "Weibei SC")
{
// These fonts claim support for ARMENIAN and a bunch of other stuff they doesn't support
// These fonts claim support for ARMENIAN and a bunch of other stuff they don't support
return USCRIPT_SIMPLIFIED_HAN;
}

View File

@@ -444,7 +444,7 @@ Point FloatingWindow::ImplCalcPos(vcl::Window* pWindow,
if (pW->IsMapModeEnabled() || pW->GetMapMode().GetMapUnit() == MapUnit::MapPixel)
{
// if we use pW->LogicToLogic(aPos, pW->GetMapMode(), MapMode(MapUnit::MapTwip)),
// for pixel conversions when map mode is not enabled, we gets
// for pixel conversions when map mode is not enabled, we get
// a 20 twips per pixel conversion since LogicToLogic uses
// a fixed 72 dpi value, instead of a correctly computed output
// device dpi or at least the most commonly used 96 dpi value;