summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdmrkv1.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-12 11:52:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-13 07:47:36 +0100
commitfbb6ff11c843feeb591fcdd93b77db7077439ce8 (patch)
treee03b44138b29cd289a52b242e371373565b44eba /svx/source/svdraw/svdmrkv1.cxx
parent078ee7560d4c7ac3883c0a625023ad22ec8dc326 (diff)
sal_uIntPtr->sal_Int32 in SdrMarkView
Change-Id: Iec5c9e45ec753de98142615fdde16f61c393a6e2 Reviewed-on: https://gerrit.libreoffice.org/46311 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw/svdmrkv1.cxx')
-rw-r--r--svx/source/svdraw/svdmrkv1.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdmrkv1.cxx b/svx/source/svdraw/svdmrkv1.cxx
index b83a99f82c84..e1f41bf58e96 100644
--- a/svx/source/svdraw/svdmrkv1.cxx
+++ b/svx/source/svdraw/svdmrkv1.cxx
@@ -47,10 +47,10 @@ bool SdrMarkView::HasMarkablePoints() const
return bRet;
}
-sal_uIntPtr SdrMarkView::GetMarkablePointCount() const
+sal_Int32 SdrMarkView::GetMarkablePointCount() const
{
ForceUndirtyMrkPnt();
- sal_uIntPtr nCount=0;
+ sal_Int32 nCount=0;
if (!ImpIsFrameHandles()) {
const size_t nMarkCount=GetMarkedObjectCount();
if (nMarkCount<=static_cast<size_t>(mnFrameHandlesLimit)) {
@@ -83,10 +83,10 @@ bool SdrMarkView::HasMarkedPoints() const
return bRet;
}
-sal_uIntPtr SdrMarkView::GetMarkedPointCount() const
+sal_Int32 SdrMarkView::GetMarkedPointCount() const
{
ForceUndirtyMrkPnt();
- sal_uIntPtr nCount=0;
+ sal_Int32 nCount=0;
if (!ImpIsFrameHandles()) {
size_t nMarkCount=GetMarkedObjectCount();
if (nMarkCount<=static_cast<size_t>(mnFrameHandlesLimit)) {