diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-10 13:19:14 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-10 14:03:40 +0200 |
commit | 4e41227dd6af52ec562d10efcb365defba6bd36e (patch) | |
tree | 78126f91c09616eeddafcbdda87fed05e606a6a4 /editeng | |
parent | e9289dbde26cd89b7e5bf54afccd06fc01dabdde (diff) |
mingw64: change Link class to use sal_IntPtr instead of long
Change-Id: I2b78c7b714ff064f2f1b8a8eb161e5e2ae121eee
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/editview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/editview.cxx b/editeng/source/editeng/editview.cxx index d7616d1fe093..e5f45e70ae40 100644 --- a/editeng/source/editeng/editview.cxx +++ b/editeng/source/editeng/editview.cxx @@ -1348,7 +1348,7 @@ bool EditView::ChangeFontSize( bool bGrow, SfxItemSet& rSet, const FontList* pFo nHeight = OutputDevice::LogicToLogic( nHeight * 10, (MapUnit)eUnit, MAP_POINT ); FontInfo aFontInfo = pFontList->Get( pFontItem->GetFamilyName(), pFontItem->GetStyleName() ); - const long* pAry = pFontList->GetSizeAry( aFontInfo ); + const sal_IntPtr* pAry = pFontList->GetSizeAry( aFontInfo ); if( bGrow ) { |