summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-05-25 16:06:05 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-06-09 18:14:29 +0200
commita98618e37b91950750d10fa14d2c28539d7c67f2 (patch)
tree6c54f980e9b0b3b12837a8d23dc9329a4bb248b9 /svx
parent7d521a85858bacdb7b5db359036ccf6f01b709c3 (diff)
Fix typos
Change-Id: Icc2923f023ec4e3219d1641f8c9d983c526bd0a8 Reviewed-on: https://gerrit.libreoffice.org/54811 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/sdr/contact/viewobjectcontactofgraphic.cxx2
-rw-r--r--svx/source/svdraw/svdobj.cxx2
-rw-r--r--svx/source/svdraw/svdogrp.cxx2
-rw-r--r--svx/source/svdraw/svdpoev.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx b/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
index db34c85e2c14..8f2902bf5ac5 100644
--- a/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
@@ -206,7 +206,7 @@ namespace sdr
// #i103720# forget event to avoid possible deletion by the following ActionChanged call
// which may use createPrimitive2DSequence/impPrepareGraphicWithAsynchroniousLoading again.
- // Deletion is actually done by the scheduler who leaded to coming here
+ // Deletion is actually done by the scheduler who led to coming here
mpAsynchLoadEvent.release();
// Invalidate all paint areas and check existing animation (which may have changed).
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index 5b313c907358..91e405dc497f 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -466,7 +466,7 @@ void SdrObject::handlePageChange(SdrPage* pOldPage, SdrPage* pNewPage)
// good to think about if this is really needed - it *seems* to be intended
// for a xShape being a on-demand-creatable resource - wit hthe argument that
// the SdrPage/UnoPage used influences the SvxShape creation. This uses
- // ressources and would be nice to get rid of anyways.
+ // resources and would be nice to get rid of anyways.
if(nullptr == pOldPage || nullptr == pNewPage)
{
SvxShape* const pShape(getSvxShape());
diff --git a/svx/source/svdraw/svdogrp.cxx b/svx/source/svdraw/svdogrp.cxx
index 919909fc3888..c0e6ae0b468d 100644
--- a/svx/source/svdraw/svdogrp.cxx
+++ b/svx/source/svdraw/svdogrp.cxx
@@ -178,7 +178,7 @@ void SdrObjGroup::NbcSetLayer(SdrLayerID nLayer)
void SdrObjGroup::handlePageChange(SdrPage* pOldPage, SdrPage* pNewPage)
{
- // call patrent
+ // call parent
SdrObject::handlePageChange(pOldPage, pNewPage);
for(size_t i(0); i < GetObjCount(); i++)
diff --git a/svx/source/svdraw/svdpoev.cxx b/svx/source/svdraw/svdpoev.cxx
index 064aa07bb650..ec4a09e88506 100644
--- a/svx/source/svdraw/svdpoev.cxx
+++ b/svx/source/svdraw/svdpoev.cxx
@@ -556,7 +556,7 @@ void SdrPolyEditView::ImpTransformMarkedPoints(PPolyTrFunc pTrFunc, const void*
if(PolyPolygonEditor::GetRelativePolyPoint(aXPP, nPt, nPolyNum, nPointNum))
{
//#i83671# used nLocalPointNum (which was the polygon point count)
- // instead of the point index (nPointNum). This of course leaded
+ // instead of the point index (nPointNum). This of course led
// to a wrong point access to the B2DPolygon.
basegfx::B2DPolygon aNewXP(aXPP.getB2DPolygon(nPolyNum));
Point aPos, aC1, aC2;