| OLD | NEW |
| 1 /** | 1 /** |
| 2 ******************************************************************************* | 2 ******************************************************************************* |
| 3 * Copyright (C) 2001-2005, International Business Machines Corporation and * | 3 * Copyright (C) 2001-2014, International Business Machines Corporation and * |
| 4 * others. All Rights Reserved. * | 4 * others. All Rights Reserved. * |
| 5 ******************************************************************************* | 5 ******************************************************************************* |
| 6 * | 6 * |
| 7 ******************************************************************************* | 7 ******************************************************************************* |
| 8 */ | 8 */ |
| 9 #include "unicode/utypes.h" | 9 #include "unicode/utypes.h" |
| 10 | 10 |
| 11 #if !UCONFIG_NO_SERVICE | 11 #if !UCONFIG_NO_SERVICE |
| 12 | 12 |
| 13 #include "unicode/resbund.h" | 13 #include "unicode/resbund.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 return new ResourceBundle(pkg, loc, status); | 66 return new ResourceBundle(pkg, loc, status); |
| 67 } | 67 } |
| 68 return NULL; | 68 return NULL; |
| 69 } | 69 } |
| 70 | 70 |
| 71 #ifdef SERVICE_DEBUG | 71 #ifdef SERVICE_DEBUG |
| 72 UnicodeString& | 72 UnicodeString& |
| 73 ICUResourceBundleFactory::debug(UnicodeString& result) const | 73 ICUResourceBundleFactory::debug(UnicodeString& result) const |
| 74 { | 74 { |
| 75 LocaleKeyFactory::debug(result); | 75 LocaleKeyFactory::debug(result); |
| 76 result.append(", bundle: "); | 76 result.append((UnicodeString)", bundle: "); |
| 77 return result.append(_bundleName); | 77 return result.append(_bundleName); |
| 78 } | 78 } |
| 79 | 79 |
| 80 UnicodeString& | 80 UnicodeString& |
| 81 ICUResourceBundleFactory::debugClass(UnicodeString& result) const | 81 ICUResourceBundleFactory::debugClass(UnicodeString& result) const |
| 82 { | 82 { |
| 83 return result.append("ICUResourceBundleFactory"); | 83 return result.append((UnicodeString)"ICUResourceBundleFactory"); |
| 84 } | 84 } |
| 85 #endif | 85 #endif |
| 86 | 86 |
| 87 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ICUResourceBundleFactory) | 87 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ICUResourceBundleFactory) |
| 88 | 88 |
| 89 U_NAMESPACE_END | 89 U_NAMESPACE_END |
| 90 | 90 |
| 91 /* !UCONFIG_NO_SERVICE */ | 91 /* !UCONFIG_NO_SERVICE */ |
| 92 #endif | 92 #endif |
| 93 | 93 |
| 94 | 94 |
| OLD | NEW |