diff options
author | Andre Fische <andre.f.fischer Andre Fischerandre.f.fischer@oracle.com> | 2011-03-31 16:12:22 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-11-28 12:48:33 +0000 |
commit | 88b223b0baf8eb5599c8c67f9e2a761bbbd819f5 (patch) | |
tree | b086785ef2f842490b22d8ff24d81ebb429d6f70 /sd | |
parent | 22e54a9d0ee80b156ddb74a3d80330d48213ce9e (diff) |
impress211: #i110990# Fixed 64bit compiler problem.
Diffstat (limited to 'sd')
-rw-r--r--[-rwxr-xr-x] | sd/source/ui/dlg/present.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/present.cxx b/sd/source/ui/dlg/present.cxx index 1fcc07a46e65..3d4453689b6c 100755..100644 --- a/sd/source/ui/dlg/present.cxx +++ b/sd/source/ui/dlg/present.cxx @@ -286,7 +286,7 @@ void SdStartPresentationDlg::GetAttr( SfxItemSet& rAttr ) sal_uInt16 nPos = maLBMonitor.GetSelectEntryPos(); if( nPos != LISTBOX_ENTRY_NOTFOUND ) - rAttr.Put( SfxInt32Item ( ATTR_PRESENT_DISPLAY, (sal_Int32)maLBMonitor.GetEntryData(nPos)) ); + rAttr.Put( SfxInt32Item ( ATTR_PRESENT_DISPLAY, (sal_Int32)(sal_IntPtr)maLBMonitor.GetEntryData(nPos)) ); nPos = aLbCustomshow.GetSelectEntryPos(); if( nPos != LISTBOX_ENTRY_NOTFOUND ) |