diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-01-30 11:31:48 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-01-30 11:36:05 +0100 |
commit | dcff9db359567c4175485e793ca8904949a284ba (patch) | |
tree | daf61290e88dc62b0dc099dccf1df5ad0fc028c0 /svx/source | |
parent | 7e51aeaa6797025ec8c1e7cea39a478edbca83d5 (diff) |
svx: PntAnz -> PointCount
Change-Id: I56ccaf5a78071a132c172e3946514624afe9dd80
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/svdraw/svdopath.cxx | 4 | ||||
-rw-r--r-- | svx/source/svdraw/svdpoev.cxx | 4 | ||||
-rw-r--r-- | svx/source/svdraw/svdstr.src | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/svdraw/svdopath.cxx b/svx/source/svdraw/svdopath.cxx index 63aaa6c90b6f..174f58c9d01d 100644 --- a/svx/source/svdraw/svdopath.cxx +++ b/svx/source/svdraw/svdopath.cxx @@ -1945,11 +1945,11 @@ OUString SdrPathObj::TakeObjNameSingul() const if(bClosed) { - nId = STR_ObjNameSingulPOLY_PntAnz; + nId = STR_ObjNameSingulPOLY_PointCount; } else { - nId = STR_ObjNameSingulPLIN_PntAnz; + nId = STR_ObjNameSingulPLIN_PointCount; } OUString sTemp(ImpGetResStr(nId)); diff --git a/svx/source/svdraw/svdpoev.cxx b/svx/source/svdraw/svdpoev.cxx index da20cab33767..2dfd64ee2cf8 100644 --- a/svx/source/svdraw/svdpoev.cxx +++ b/svx/source/svdraw/svdpoev.cxx @@ -90,9 +90,9 @@ void SdrPolyEditView::CheckPolyPossibilitiesHelper( SdrMark* pM, bool& b1stSmoot if(pPath && pPts) { - const sal_uInt32 nMarkedPntAnz(pPts->size()); + const sal_uInt32 nMarkedPointCount(pPts->size()); - if(nMarkedPntAnz) + if(nMarkedPointCount) { bool bClosed(pPath->IsClosed()); bSetMarkedPointsSmoothPossible = true; diff --git a/svx/source/svdraw/svdstr.src b/svx/source/svdraw/svdstr.src index 16383f8761b4..6c64f88ee6ca 100644 --- a/svx/source/svdraw/svdstr.src +++ b/svx/source/svdraw/svdstr.src @@ -200,7 +200,7 @@ String STR_ObjNameSingulPOLY { Text [ en-US ] = "Polygon" ; }; -String STR_ObjNameSingulPOLY_PntAnz +String STR_ObjNameSingulPOLY_PointCount { Text [ en-US ] = "Polygon %2 corners" ; }; @@ -212,7 +212,7 @@ String STR_ObjNameSingulPLIN { Text [ en-US ] = "Polyline" ; }; -String STR_ObjNameSingulPLIN_PntAnz +String STR_ObjNameSingulPLIN_PointCount { Text [ en-US ] = "Polyline with %2 corners" ; }; |