summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2011-06-10 13:00:41 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-06-10 13:00:41 -0700
commit173e4c79b4eced0e155c8b31496eb3815ed3571c (patch)
treee8f06602b2a1ff072bd00150eb916bedce8d861a /tools
parent32ed8448d20b7b69afc2590eed60163d80e818fe (diff)
parent9980043e930f877c4cd066de2b3d57dce4fc926e (diff)
downloadframeworks_base-173e4c79b4eced0e155c8b31496eb3815ed3571c.zip
frameworks_base-173e4c79b4eced0e155c8b31496eb3815ed3571c.tar.gz
frameworks_base-173e4c79b4eced0e155c8b31496eb3815ed3571c.tar.bz2
am 9980043e: am 820caf7b: am 8821ba86: Ummm... f*, stop breaking the build.
* commit '9980043e930f877c4cd066de2b3d57dce4fc926e': Ummm... f*, stop breaking the build.
Diffstat (limited to 'tools')
-rw-r--r--tools/aapt/ResourceTable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt/ResourceTable.cpp b/tools/aapt/ResourceTable.cpp
index 81b924a..f3ca23d 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,