aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/enumerations
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2012-02-28 07:47:29 +0100
committerBananeweizen <bananeweizen@gmx.de>2012-02-28 07:47:29 +0100
commit6d13ce6764a387876af98f756924ece2c22c5dab (patch)
tree24ae2b7f39eab350d3249eef43554f30a9f980b7 /main/src/cgeo/geocaching/enumerations
parentb2d7a2b2c80ad45eac36549c9a486678b40241f6 (diff)
downloadcgeo-6d13ce6764a387876af98f756924ece2c22c5dab.zip
cgeo-6d13ce6764a387876af98f756924ece2c22c5dab.tar.gz
cgeo-6d13ce6764a387876af98f756924ece2c22c5dab.tar.bz2
refactoring: have unknown type use unknown icon
Diffstat (limited to 'main/src/cgeo/geocaching/enumerations')
-rw-r--r--main/src/cgeo/geocaching/enumerations/CacheType.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/CacheType.java b/main/src/cgeo/geocaching/enumerations/CacheType.java
index ca4e999..cd183c2 100644
--- a/main/src/cgeo/geocaching/enumerations/CacheType.java
+++ b/main/src/cgeo/geocaching/enumerations/CacheType.java
@@ -29,9 +29,9 @@ public enum CacheType {
PROJECT_APE("ape", "project ape cache", "2555690d-b2bc-4b55-b5ac-0cb704c0b768", R.string.ape, R.drawable.type_ape),
GCHQ("gchq", "groundspeak hq", "416f2494-dc17-4b6a-9bab-1a29dd292d8c", R.string.gchq, R.drawable.type_hq),
GPS_EXHIBIT("gps", "gps cache exhibit", "72e69af2-7986-4990-afd9-bc16cbbb4ce3", R.string.gps, R.drawable.type_traditional), // icon missing
- UNKNOWN("unknown", "unknown", "", R.string.unknown, R.drawable.type_mystery), // icon missing
+ UNKNOWN("unknown", "unknown", "", R.string.unknown, R.drawable.type_unknown), // icon missing
/** No real cache type -> filter */
- ALL("all", "display all caches", "9a79e6ce-3344-409c-bbe9-496530baf758", R.string.all_types, R.drawable.type_mystery);
+ ALL("all", "display all caches", "9a79e6ce-3344-409c-bbe9-496530baf758", R.string.all_types, R.drawable.type_unknown);
public final String id;
public final String pattern;