diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 13:52:24 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 13:52:24 +0000 |
commit | 542cd419d029feff26be5940065013b50a13ce92 (patch) | |
tree | 1a877b5fcc41ea3f9a40ba9b2111faa8d088ec91 /sw/source/ui/utlui/numfmtlb.cxx | |
parent | 9dcb9b8028a5e487887c5faff2fed41e8437826d (diff) |
INTEGRATION: CWS numberformat (1.15.74); FILE MERGED
2005/10/26 17:50:51 kendy 1.15.74.1: #i55546#
The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.
Diffstat (limited to 'sw/source/ui/utlui/numfmtlb.cxx')
-rw-r--r-- | sw/source/ui/utlui/numfmtlb.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/utlui/numfmtlb.cxx b/sw/source/ui/utlui/numfmtlb.cxx index 93cecc428f7d..f88a06dff9e0 100644 --- a/sw/source/ui/utlui/numfmtlb.cxx +++ b/sw/source/ui/utlui/numfmtlb.cxx @@ -4,9 +4,9 @@ * * $RCSfile: numfmtlb.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: rt $ $Date: 2005-09-09 11:29:23 $ + * last change: $Author: rt $ $Date: 2005-12-14 14:52:24 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -493,7 +493,7 @@ IMPL_LINK( NumFormatListBox, SelectHdl, ListBox *, pBox ) if( pItem && 0 != ((SvxNumberInfoItem*)pItem)->GetDelCount() ) { - const ULONG* pDelArr = ((SvxNumberInfoItem*)pItem)->GetDelArray(); + const sal_uInt32* pDelArr = ((SvxNumberInfoItem*)pItem)->GetDelArray(); for ( USHORT i = 0; i < ((SvxNumberInfoItem*)pItem)->GetDelCount(); i++ ) pFormatter->DeleteEntry( pDelArr[i] ); |