diff options
| author | 2012-09-26 11:45:08 -0700 | |
|---|---|---|
| committer | 2012-09-26 11:45:09 -0700 | |
| commit | a2b978bc55d5ebd8c32c41a707b5a155216ee0a5 (patch) | |
| tree | ec511707311426d25e43fd87dd7ad297b10b26b0 | |
| parent | 80c491f07ac9f6453309fcaa601e904ae80a172e (diff) | |
| parent | 0122a3db313d3a7b55e0dee5eae1d7798c0d55be (diff) | |
Merge "Fix writing text version of styleable IDs. do not merge." into jb-mr1-dev
| -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); } |