diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-09-11 14:33:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-09-12 15:47:39 +0200 |
commit | 9a8ae4a9566e23e1ca116c3c41f62995f8234c97 (patch) | |
tree | e6cee4890751e4fbd3025a2b83aa0da78753158e /desktop | |
parent | 35612c995d53d74e8b9ba44bc6e940cbb4dd0f60 (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.cxx | 2 |
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]) { |