summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorSarper Akdemir <q.sarperakdemir@gmail.com>2020-01-26 17:12:22 +0300
committerStephan Bergmann <sbergman@redhat.com>2020-02-03 15:12:17 +0100
commit81f73ca9b9a61fcbba1533ac8b5d5be16025667b (patch)
tree0afb98c4cdbb4e3414db54b115eb8a77a59abc58 /svx/source
parentb77600c02097852675503bb63cce00d4b2756af4 (diff)
tdf#75280: Convert inappropriate use of sal_uIntPtr to better integer types
Change-Id: If0c39b85dc5fc8c84b723e03159abbdd790e42ae Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87453 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/svdraw/svdview.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdview.cxx b/svx/source/svdraw/svdview.cxx
index bb1a8564d654..6182d99c3db2 100644
--- a/svx/source/svdraw/svdview.cxx
+++ b/svx/source/svdraw/svdview.cxx
@@ -1232,7 +1232,7 @@ OUString SdrView::GetStatusText()
// At the end of a line of any multi-line paragraph, we display the
// position of the next line of the same paragraph, if there is one.
sal_uInt16 nParaLine = 0;
- sal_uIntPtr nParaLineCount = pTextEditOutliner->GetLineCount(aSel.nEndPara);
+ sal_uLong nParaLineCount = pTextEditOutliner->GetLineCount(aSel.nEndPara);
bool bBrk = false;
while (!bBrk)
{