diff options
| author | 2012-09-26 10:11:54 -0700 | |
|---|---|---|
| committer | 2012-09-26 11:14:50 -0700 | |
| commit | 0122a3db313d3a7b55e0dee5eae1d7798c0d55be (patch) | |
| tree | a09e249293ad45d890ad6c01b3481d2ddcf4ae00 | |
| parent | 2832136bb6fcace61ef078051e94aa0a841aac15 (diff) | |
Fix writing text version of styleable IDs. do not merge.
(cherry picked from commit d16047434bca24b2811de7ea9d22de6ee0f87f79)
Change-Id: Ic679080d5157daf77c35516c8f682bd13e2b4d96
| -rw-r--r-- | tools/aapt/Resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/Resource.cpp b/tools/aapt/Resource.cpp index 9c2e1b9127f1..77168f948640 100644 --- a/tools/aapt/Resource.cpp +++ b/tools/aapt/Resource.cpp @@ -1946,7 +1946,7 @@ static status_t writeTextLayoutClasses( const bool pub = (typeSpecFlags&ResTable_typeSpec::SPEC_PUBLIC) != 0; fprintf(fp, - "int styleable.%s_%s %d\n", + "int styleable %s_%s %d\n", nclassName.string(), String8(name).string(), (int)pos); } |