diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-10-06 09:45:57 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-10-06 09:45:57 +0000 |
commit | 62cc0621dae4355297c97a18ffa97632628a27cd (patch) | |
tree | 04b3c232a49a07bd83923f85628c77f343f6f6ec /sd/source/ui | |
parent | 1d6e3a2b90a1e156afbf98765950778749b2fd64 (diff) |
INTEGRATION: CWS intptr (1.7.150); FILE MERGED
2005/09/13 14:50:39 kendy 1.7.150.1: #i54498#
Introduce and use sal_IntPtr/sal_uIntPtr for ints where we have to store a pointer
Diffstat (limited to 'sd/source/ui')
-rw-r--r-- | sd/source/ui/animations/CustomAnimationDialog.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx index 25a17db7e31b..4c86f71ff36b 100644 --- a/sd/source/ui/animations/CustomAnimationDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationDialog.cxx @@ -4,9 +4,9 @@ * * $RCSfile: CustomAnimationDialog.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2005-09-23 10:45:07 $ + * last change: $Author: kz $ $Date: 2005-10-06 10:45:57 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -2224,7 +2224,7 @@ void CustomAnimationDurationTabPage::update( STLPropertySet* pSet ) USHORT nPos = mpLBTrigger->GetSelectEntryPos(); if( nPos != LISTBOX_ENTRY_NOTFOUND ) { - sal_Int32 nShape = (sal_Int32)mpLBTrigger->GetEntryData( nPos ); + sal_Int32 nShape = (sal_Int32)(sal_IntPtr)mpLBTrigger->GetEntryData( nPos ); Reference< XDrawPage > xCurrentPage; mpSet->getPropertyValue( nHandleCurrentPage ) >>= xCurrentPage; |