diff options
| author | Ondřej Kunc <kunc88@gmail.com> | 2012-06-01 19:31:00 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2012-06-01 19:55:30 +0200 |
| commit | 9f7090ef8ca712cd6734602f8e5e22b84a18860a (patch) | |
| tree | 8a484ee3e97e4389aca91fd5cf975ae25c2efe64 /main/src/cgeo/geocaching/enumerations | |
| parent | d5af85bde9a7af6b5ceef86c930eae524c7d0ef5 (diff) | |
| download | cgeo-9f7090ef8ca712cd6734602f8e5e22b84a18860a.zip cgeo-9f7090ef8ca712cd6734602f8e5e22b84a18860a.tar.gz cgeo-9f7090ef8ca712cd6734602f8e5e22b84a18860a.tar.bz2 | |
Fix #1699: give resources to the "unknown" attribute
Diffstat (limited to 'main/src/cgeo/geocaching/enumerations')
| -rw-r--r-- | main/src/cgeo/geocaching/enumerations/CacheAttribute.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/CacheAttribute.java b/main/src/cgeo/geocaching/enumerations/CacheAttribute.java index 4a502fb..6456f71 100644 --- a/main/src/cgeo/geocaching/enumerations/CacheAttribute.java +++ b/main/src/cgeo/geocaching/enumerations/CacheAttribute.java @@ -11,7 +11,7 @@ import java.util.Map; public enum CacheAttribute { - UNKNOWN(0, "", R.drawable.attribute__strikethru, 0, 0), + UNKNOWN(0, "unknown", R.drawable.attribute__strikethru, R.string.attribute_unknown_yes, R.string.attribute_unknown_no), DOGS(1, "dogs", R.drawable.attribute_dogs, R.string.attribute_dogs_yes, R.string.attribute_dogs_no), FEE(2, "fee", R.drawable.attribute_fee, R.string.attribute_fee_yes, R.string.attribute_fee_no), RAPPELLING(3, "rappelling", R.drawable.attribute_rappelling, R.string.attribute_rappelling_yes, R.string.attribute_rappelling_no), |
