Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(974)

Unified Diff: patches/remove_si.patch

Issue 2442923002: ICU update to 58 part 2 (Closed)
Patch Set: apply more patches and updates; almost ready to roll Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « patches/relative_date.patch ('k') | patches/scriptset.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: patches/remove_si.patch
diff --git a/patches/remove_si.patch b/patches/remove_si.patch
deleted file mode 100644
index a389d1d4eb409fb544980d1b66026e5ba0286d75..0000000000000000000000000000000000000000
--- a/patches/remove_si.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-diff --git a/source/i18n/region.cpp b/source/i18n/region.cpp
-index 085f704..15c5dd0 100644
---- a/source/i18n/region.cpp
-+++ b/source/i18n/region.cpp
-@@ -67,8 +67,7 @@ static UVector *allRegions = NULL;
- static const UChar UNKNOWN_REGION_ID [] = { 0x5A, 0x5A, 0 }; /* "ZZ" */
- static const UChar OUTLYING_OCEANIA_REGION_ID [] = { 0x51, 0x4F, 0 }; /* "QO" */
- static const UChar WORLD_ID [] = { 0x30, 0x30, 0x31, 0 }; /* "001" */
--static const UChar RANGE_MARKER [] = { 0x7e, 0 }; /* "~" */
--static const UnicodeString RANGE_MARKER_STRING(RANGE_MARKER);
-+static const UChar RANGE_MARKER = 0x7eu; /* '~' */
-
- UOBJECT_DEFINE_RTTI_IMPLEMENTATION(RegionNameEnumeration)
-
-@@ -121,7 +120,7 @@ void Region::loadRegionData(UErrorCode &status) {
-
- while ( ures_hasNext(regionRegular.getAlias()) ) {
- UnicodeString regionName = ures_getNextUnicodeString(regionRegular.getAlias(),NULL,&status);
-- int32_t rangeMarkerLocation = regionName.indexOf(RANGE_MARKER_STRING);
-+ int32_t rangeMarkerLocation = regionName.indexOf(RANGE_MARKER);
- UChar buf[6];
- regionName.extract(buf,6,status);
- if ( rangeMarkerLocation > 0 ) {
-@@ -140,7 +139,7 @@ void Region::loadRegionData(UErrorCode &status) {
-
- while ( ures_hasNext(regionMacro.getAlias()) ) {
- UnicodeString regionName = ures_getNextUnicodeString(regionMacro.getAlias(),NULL,&status);
-- int32_t rangeMarkerLocation = regionName.indexOf(RANGE_MARKER_STRING);
-+ int32_t rangeMarkerLocation = regionName.indexOf(RANGE_MARKER);
- UChar buf[6];
- regionName.extract(buf,6,status);
- if ( rangeMarkerLocation > 0 ) {
« no previous file with comments | « patches/relative_date.patch ('k') | patches/scriptset.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698