summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-09-11 14:33:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-09-12 15:47:39 +0200
commit9a8ae4a9566e23e1ca116c3c41f62995f8234c97 (patch)
treee6cee4890751e4fbd3025a2b83aa0da78753158e /desktop
parent35612c995d53d74e8b9ba44bc6e940cbb4dd0f60 (diff)
replace sal_IntPtr with simple integer type
Change-Id: I5aaf606b684b69641a872b3405b4d4d378289ad4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102466 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/lib/init.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index f28718093836..3d9c835a78da 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -4576,7 +4576,7 @@ static char* getFonts (const char* pCommand)
{
boost::property_tree::ptree aChildren;
const FontMetric& rFontMetric = pList->GetFontName(i);
- const sal_IntPtr* pAry = pList->GetSizeAry(rFontMetric);
+ const int* pAry = pList->GetSizeAry(rFontMetric);
sal_uInt16 nSizeCount = 0;
while (pAry[nSizeCount])
{