]> granicus.if.org Git - icu/commitdiff
ICU-8951 Fix for a build error on Mac.
authorYoshito Umaoka <y.umaoka@gmail.com>
Wed, 3 Sep 2014 14:16:17 +0000 (14:16 +0000)
committerYoshito Umaoka <y.umaoka@gmail.com>
Wed, 3 Sep 2014 14:16:17 +0000 (14:16 +0000)
X-SVN-Rev: 36326

icu4c/source/common/uloc_keytype.cpp

index 896ea9ee794d894d719558e750e6ea76314ef046..315231577df7de115c28609233d89bfed394ce29 100644 (file)
@@ -115,15 +115,15 @@ initFromResourceBundle(UErrorCode& sts) {
     }\r
 \r
     // initialize vectors storing dynamically allocated objects\r
-    gKeyTypeStringPool = new UVector(uloc_deleteKeyTypeStringPoolEntry, NULL, sts);\r
+    gKeyTypeStringPool = new icu::UVector(uloc_deleteKeyTypeStringPoolEntry, NULL, sts);\r
     if (gKeyTypeStringPool == NULL || U_FAILURE(sts)) {\r
         goto close_bundles;\r
     }\r
-    gLocExtKeyDataEntries = new UVector(uloc_deleteKeyDataEntry, NULL, sts);\r
+    gLocExtKeyDataEntries = new icu::UVector(uloc_deleteKeyDataEntry, NULL, sts);\r
     if (gLocExtKeyDataEntries == NULL || U_FAILURE(sts)) {\r
         goto close_bundles;\r
     }\r
-    gLocExtTypeEntries = new UVector(uloc_deleteTypeEntry, NULL, sts);\r
+    gLocExtTypeEntries = new icu::UVector(uloc_deleteTypeEntry, NULL, sts);\r
     if (gLocExtTypeEntries == NULL || U_FAILURE(sts)) {\r
         goto close_bundles;\r
     }\r