OLD | NEW |
1 /* | 1 /* |
2 ******************************************************************************* | 2 ******************************************************************************* |
3 * | 3 * |
4 * Copyright (C) 1998-2013, International Business Machines | 4 * Copyright (C) 1998-2014, International Business Machines |
5 * Corporation and others. All Rights Reserved. | 5 * Corporation and others. All Rights Reserved. |
6 * | 6 * |
7 ******************************************************************************* | 7 ******************************************************************************* |
8 * | 8 * |
9 * File locbund.cpp | 9 * File locbund.cpp |
10 * | 10 * |
11 * Modification History: | 11 * Modification History: |
12 * | 12 * |
13 * Date Name Description | 13 * Date Name Description |
14 * 11/18/98 stephen Creation. | 14 * 11/18/98 stephen Creation. |
15 * 12/10/1999 bobbyr(at)optiosoftware.com Fix for memory leak + string a
llocation bugs | 15 * 12/10/1999 bobbyr(at)optiosoftware.com Fix for memory leak + string a
llocation bugs |
16 ******************************************************************************* | 16 ******************************************************************************* |
17 */ | 17 */ |
18 | 18 |
19 #include "unicode/utypes.h" | 19 #include "unicode/utypes.h" |
20 | 20 |
21 #if !UCONFIG_NO_FORMATTING | 21 #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION |
22 | 22 |
23 #include "locbund.h" | 23 #include "locbund.h" |
24 | 24 |
25 #include "cmemory.h" | 25 #include "cmemory.h" |
26 #include "cstring.h" | 26 #include "cstring.h" |
27 #include "ucln_io.h" | 27 #include "ucln_io.h" |
28 #include "mutex.h" | 28 #include "mutex.h" |
29 #include "umutex.h" | 29 #include "umutex.h" |
30 #include "unicode/ustring.h" | 30 #include "unicode/ustring.h" |
31 #include "unicode/uloc.h" | 31 #include "unicode/uloc.h" |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 else { | 174 else { |
175 bundle->fNumberFormat[style-1] = formatAlias; | 175 bundle->fNumberFormat[style-1] = formatAlias; |
176 } | 176 } |
177 } | 177 } |
178 } | 178 } |
179 } | 179 } |
180 return formatAlias; | 180 return formatAlias; |
181 } | 181 } |
182 | 182 |
183 #endif /* #if !UCONFIG_NO_FORMATTING */ | 183 #endif /* #if !UCONFIG_NO_FORMATTING */ |
OLD | NEW |