]> git.saurik.com Git - android/aapt.git/commitdiff
Ummm... f*, stop breaking the build.
authorDianne Hackborn <hackbod@google.com>
Thu, 9 Jun 2011 18:29:08 +0000 (11:29 -0700)
committerDianne Hackborn <hackbod@google.com>
Thu, 9 Jun 2011 23:09:15 +0000 (16:09 -0700)
Change-Id: I6a42cb60e7cebda6d17222e6af1f327889323c40

ResourceTable.cpp

index d98b285dd1e3c8be7b16d92886f0704559fc51ca..e618877bd5de6d173adf9ec52ce5fdf961921d2c 100644 (file)
@@ -3209,7 +3209,7 @@ status_t ResourceTable::Entry::assignResourceIds(ResourceTable* table,
         const String16 id16("id");
         mParentId = 0;
         if (mParent.size() > 0) {
-            mParentId = table->getResId(mParent, &style16, NULL, &errorMsg);
+            mParentId = table->getResId(mParent, &style16, NULL, &errorMsg, false);
             if (mParentId == 0) {
                 mPos.error("Error retrieving parent for item: %s '%s'.\n",
                         errorMsg, String8(mParent).string());
@@ -3221,7 +3221,7 @@ status_t ResourceTable::Entry::assignResourceIds(ResourceTable* table,
             const String16& key = mBag.keyAt(i);
             Item& it = mBag.editValueAt(i);
             it.bagKeyId = table->getResId(key,
-                    it.isId ? &id16 : &attr16, NULL, &errorMsg);
+                    it.isId ? &id16 : &attr16, NULL, &errorMsg, false);
             //printf("Bag key of %s: #%08x\n", String8(key).string(), it.bagKeyId);
             if (it.bagKeyId == 0) {
                 it.sourcePos.error("Error: %s: %s '%s'.\n", errorMsg,