summaryrefslogtreecommitdiff
path: root/framework
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 /framework
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 'framework')
-rw-r--r--framework/source/uielement/fontsizemenucontroller.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/uielement/fontsizemenucontroller.cxx b/framework/source/uielement/fontsizemenucontroller.cxx
index 317df6b14033..9c746c911ad2 100644
--- a/framework/source/uielement/fontsizemenucontroller.cxx
+++ b/framework/source/uielement/fontsizemenucontroller.cxx
@@ -162,8 +162,8 @@ void FontSizeMenuController::fillPopupMenu( Reference< css::awt::XPopupMenu > co
// setup font size array
m_pHeightArray.reset();
- const sal_IntPtr* pTempAry;
- const sal_IntPtr* pAry = pFontList->GetSizeAry( aFontMetric );
+ const int* pTempAry;
+ const int* pAry = pFontList->GetSizeAry( aFontMetric );
sal_uInt16 nSizeCount = 0;
while ( pAry[nSizeCount] )
nSizeCount++;