Fix typos

Change-Id: I2a0a3d8eff5e6f1d456128f71519d132b8839e28
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120481
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Andrea Gelmini 2021-08-16 18:22:58 +02:00 committed by Julien Nabet
parent 7bd03074ae
commit dd3ab0fd73
4 changed files with 7 additions and 7 deletions

View file

@ -15,7 +15,7 @@
<!-- allow use of third-party plugins/frameworks (aka Java) -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Allow Base to import data from Adddress Book -->
<!-- Allow Base to import data from Address Book -->
<key>com.apple.security.personal-information.addressbook</key>
<true/>
@GET_TASK_ALLOW_ENTITLEMENT@

View file

@ -22,7 +22,7 @@
<true/>
<key>com.apple.security.cs.disable-executable-page-protection</key>
<true/>
<!-- Allow Base to import data from Adddress Book -->
<!-- Allow Base to import data from Address Book -->
<key>com.apple.security.personal-information.addressbook</key>
<true/>
</dict>

View file

@ -409,7 +409,7 @@ SmMlExportWrapper::WriteThroughComponentMS(const Reference<XComponent>& xCompone
bool bOk = WriteThroughComponentOS(xStream, xComponent, rxContext, rPropSet,
u"com.sun.star.comp.Math.XMLContentExporter");
// We don't want to read unitzialized data
// We don't want to read uninitialized data
if (!bOk)
return u"";
@ -500,7 +500,7 @@ ErrCode SmMlExport::exportDoc(enum XMLTokenEnum eClass)
return ERRCODE_NONE;
}
/* Needs comented for now or clang complains
/* Needs to be commented out for now otherwise clang complains
// Checks if it has to export a particular tree
if (m_pElementTree == nullptr)
{
@ -519,7 +519,7 @@ ErrCode SmMlExport::exportDoc(enum XMLTokenEnum eClass)
}
*/
// Start document amd encript if necessary
// Start document and encrypt if necessary
GetDocHandler()->startDocument();
addChaffWhenEncryptedStorage();

View file

@ -307,7 +307,7 @@ tools::Polygon lcl_CreateContourPolygon(SdrObject* pSdrObj)
{
// EnhancedCustomShapeEngine::GetLineGeometry() is not directly usable, because the wrap
// polygon acts on the untransformed shape in Word. We do here similar as in
// GetLineGreometry(), but without transformations.
// GetLineGeometry(), but without transformations.
EnhancedCustomShape2d aCustomShape2d(*static_cast<SdrObjCustomShape*>(pSdrObj));
SdrObjectUniquePtr pLineGeometryObj = aCustomShape2d.CreateLineGeometry();
if (!pLineGeometryObj)
@ -352,7 +352,7 @@ tools::Polygon lcl_CreateContourPolygon(SdrObject* pSdrObj)
// flipped coordinates. In such cases the wrap polygon needs to contain flipped
// coordinates too. That is missing here.
// "moon" and "msp-spt89" (up-right-arrow) are currently mirrowed horizontal. But
// "moon" and "msp-spt89" (up-right-arrow) are currently mirrored horizontally. But
// that is removed on export in shapes.cxx. So need to remove it in wrap polygon too.
uno::Reference<drawing::XShape> xShape(pSdrObj->getUnoShape(), uno::UNO_QUERY);
uno::Reference<beans::XPropertySet> xProps(xShape, uno::UNO_QUERY);