testapp: made literals as simple as they can be.

Eg. \" in strings.xml and " in literals.xml instead of \" in both places.
This commit is contained in:
Ryszard Wiśniewski 2011-05-07 13:17:21 +02:00
parent e338168ae2
commit 7ebf00a828
2 changed files with 3 additions and 3 deletions

View File

@ -7,6 +7,6 @@
<string name="test_string5">\#ff123456</string> <string name="test_string5">\#ff123456</string>
<string name="test_string7">&amp;</string> <string name="test_string7">&amp;</string>
<string name="test_string8">\'</string> <string name="test_string8">\'</string>
<string name="test_string9">\&quot;</string> <string name="test_string9">\"</string>
<string name="test_string10">\u0005</string> <string name="test_string10">\u0005</string>
</resources> </resources>

View File

@ -7,7 +7,7 @@
test5="#ff123456" test5="#ff123456"
test6="\#ff123456" test6="\#ff123456"
test7="&amp;" test7="&amp;"
test8="\'" test8="'"
test9="\&quot;" test9="&quot;"
test10="\u0005" test10="\u0005"
/> />