diff options
| author | campbeb <bpcampbell@gmail.com> | 2013-05-25 13:40:59 -1000 |
|---|---|---|
| committer | campbeb <bpcampbell@gmail.com> | 2013-05-25 13:49:21 -1000 |
| commit | 0e5632331731467330148c0944148c5eae8da071 (patch) | |
| tree | 3bf92a1a613ab074b58e62166ed078273c216586 /main/src/cgeo/geocaching/enumerations | |
| parent | d6388f0d97cafaa896f3ee9fc1c55eba8b7c3c91 (diff) | |
| download | cgeo-0e5632331731467330148c0944148c5eae8da071.zip cgeo-0e5632331731467330148c0944148c5eae8da071.tar.gz cgeo-0e5632331731467330148c0944148c5eae8da071.tar.bz2 | |
Fix #2727 - Support GeoTour attribute
Also some minor changes to attritube generation files for
additional explanation
Diffstat (limited to 'main/src/cgeo/geocaching/enumerations')
| -rw-r--r-- | main/src/cgeo/geocaching/enumerations/CacheAttribute.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/CacheAttribute.java b/main/src/cgeo/geocaching/enumerations/CacheAttribute.java index 339516b..243f63d 100644 --- a/main/src/cgeo/geocaching/enumerations/CacheAttribute.java +++ b/main/src/cgeo/geocaching/enumerations/CacheAttribute.java @@ -108,7 +108,8 @@ public enum CacheAttribute { ARITHMETIC(-1, 56, "arithmetic", R.drawable.attribute_arithmetic, R.string.attribute_arithmetic_yes, R.string.attribute_arithmetic_no), OTHER_CACHE(-1, 57, "other_cache", R.drawable.attribute_other_cache, R.string.attribute_other_cache_yes, R.string.attribute_other_cache_no), ASK_OWNER(-1, 58, "ask_owner", R.drawable.attribute_ask_owner, R.string.attribute_ask_owner_yes, R.string.attribute_ask_owner_no), - UNKNOWN(-1, -1, "unknown", R.drawable.attribute_unknown, R.string.attribute_unknown_yes, R.string.attribute_unknown_no); + UNKNOWN(-1, -1, "unknown", R.drawable.attribute_unknown, R.string.attribute_unknown_yes, R.string.attribute_unknown_no), + GEOTOUR(67, -1, "geotour", R.drawable.attribute_geotour, R.string.attribute_geotour_yes, R.string.attribute_geotour_no); // THIS LIST IS GENERATED: don't change anything here but read // project/attributes/readme.txt |
