diff options
author | Michael Stahl <mstahl@redhat.com> | 2011-12-06 17:27:06 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2011-12-06 17:29:56 +0100 |
commit | a25a01361e891b1570e3e4e338d88f66889f3142 (patch) | |
tree | 62a0077e0392dac38830d15427cca2e5ccfea4c1 /svx/source | |
parent | 210f2dc0afa9e40eed4166152210364f0c206aaa (diff) |
svx: tweak translations a tiny bit
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/svdraw/svdomeas.cxx | 6 | ||||
-rw-r--r-- | svx/source/svdraw/svdoole2.cxx | 2 | ||||
-rw-r--r-- | svx/source/svdraw/svdopath.cxx | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/svdraw/svdomeas.cxx b/svx/source/svdraw/svdomeas.cxx index 83aa8e490bcc..42ffe6327f64 100644 --- a/svx/source/svdraw/svdomeas.cxx +++ b/svx/source/svdraw/svdomeas.cxx @@ -656,9 +656,9 @@ void SdrMeasureObj::TakeUnrotatedSnapRect(Rectangle& rRect) const long nArr1Len=aMPol.nArrow1Len; long nArr2Len=aMPol.nArrow2Len; if (aMPol.bBreakedLine) { - // In the case of a dashed line and Outside, the text shouldn't be - // placed next to the line at the arrowhead insetead of directly at the - // arrowhead. + // In the case of a dashed line and Outside, the text should be + // placed next to the line at the arrowhead instead of directly + // at the arrowhead. nArr1Len=aMPol.nShortLineLen+aMPol.nArrow1Wdt/4; nArr2Len=aMPol.nShortLineLen+aMPol.nArrow2Wdt/4; } diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx index b9df1162dad1..db0322d0717e 100644 --- a/svx/source/svdraw/svdoole2.cxx +++ b/svx/source/svdraw/svdoole2.cxx @@ -1760,7 +1760,7 @@ void SdrOle2Obj::NbcResize(const Point& rRef, const Fraction& xFact, const Fract } SdrRectObj::NbcResize(rRef,xFact,yFact); - if (aGeo.nShearWink!=0 || aGeo.nDrehWink!=0) { // little correctures + if (aGeo.nShearWink!=0 || aGeo.nDrehWink!=0) { // little corrections if (aGeo.nDrehWink>=9000 && aGeo.nDrehWink<27000) { aRect.Move(aRect.Left()-aRect.Right(),aRect.Top()-aRect.Bottom()); } diff --git a/svx/source/svdraw/svdopath.cxx b/svx/source/svdraw/svdopath.cxx index 2b827cba0b48..677f6e718c2b 100644 --- a/svx/source/svdraw/svdopath.cxx +++ b/svx/source/svdraw/svdopath.cxx @@ -102,7 +102,7 @@ struct ImpSdrPathDragData : public SdrDragStatUserData bool bValid; // FALSE = too few points bool bClosed; // closed object? sal_uInt16 nPoly; // number of the polygon in the PolyPolygon - sal_uInt16 nPnt; // number of point in the upper polygon + sal_uInt16 nPnt; // number of point in the above polygon sal_uInt16 nPntAnz; // number of points of the polygon sal_uInt16 nPntMax; // maximum index bool bBegPnt; // dragged point is first point of a Polyline @@ -167,7 +167,7 @@ ImpSdrPathDragData::ImpSdrPathDragData(const SdrPathObj& rPO, const SdrHdl& rHdl bValid=sal_False; bClosed=rPO.IsClosed(); // closed object? nPoly=(sal_uInt16)rHdl.GetPolyNum(); // number of the polygon in the PolyPolygon - nPnt=(sal_uInt16)rHdl.GetPointNum(); // number of points in the upper polygon + nPnt=(sal_uInt16)rHdl.GetPointNum(); // number of points in the above polygon const XPolygon aTmpXP(rPO.GetPathPoly().getB2DPolygon(nPoly)); nPntAnz=aTmpXP.GetPointCount(); // number of point of the polygon if (nPntAnz==0 || (bClosed && nPntAnz==1)) return; // minimum of 1 points for Lines, minimum of 2 points for Polygon @@ -666,7 +666,7 @@ bool ImpPathForDragAndCreate::movePathDrag( SdrDragStat& rDrag ) const // copy certain data locally to use less code and have faster access times bool bClosed =mpSdrPathDragData->bClosed ; // closed object? - sal_uInt16 nPnt =mpSdrPathDragData->nPnt ; // number of point in the upper polygon + sal_uInt16 nPnt =mpSdrPathDragData->nPnt ; // number of point in the above polygon bool bBegPnt =mpSdrPathDragData->bBegPnt ; // dragged point is first point of a Polyline bool bEndPnt =mpSdrPathDragData->bEndPnt ; // dragged point is last point of a Polyline sal_uInt16 nPrevPnt =mpSdrPathDragData->nPrevPnt ; // index of previous point @@ -753,7 +753,7 @@ bool ImpPathForDragAndCreate::movePathDrag( SdrDragStat& rDrag ) const } rDrag.SetActionRect(Rectangle(rDrag.GetNow(),rDrag.GetNow())); - // spacially for IBM: Eliminate points, if both adjoining lines form near 180 degrees angle anyway + // specially for IBM: Eliminate points if both adjoining lines form near 180 degrees angle anyway if (!bControl && rDrag.GetView()!=NULL && rDrag.GetView()->IsEliminatePolyPoints() && !bBegPnt && !bEndPnt && !bPrevIsControl && !bNextIsControl) { |