diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-06-09 11:29:08 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-06-09 16:09:15 -0700 |
commit | 8821ba860693f5206c56ae727a4231e4d6f0a735 (patch) | |
tree | e9184a6f581738ecd6ffc406b73fda17d3625309 | |
parent | 220cd77de62956eb76c5084e1d1341d69bfd214a (diff) | |
download | frameworks_base-8821ba860693f5206c56ae727a4231e4d6f0a735.zip frameworks_base-8821ba860693f5206c56ae727a4231e4d6f0a735.tar.gz frameworks_base-8821ba860693f5206c56ae727a4231e4d6f0a735.tar.bz2 |
Ummm... f*, stop breaking the build.
Change-Id: I6a42cb60e7cebda6d17222e6af1f327889323c40
-rw-r--r-- | tools/aapt/ResourceTable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt/ResourceTable.cpp b/tools/aapt/ResourceTable.cpp index d98b285..e618877 100644 --- a/tools/aapt/ResourceTable.cpp +++ b/tools/aapt/ResourceTable.cpp @@ -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, |