diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2011-10-17 18:45:58 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2011-10-17 18:45:58 +0200 |
| commit | caf3063c5632e8ccefc08422942f35090a2a6a48 (patch) | |
| tree | 8b7f332cc898a29b7046acb447943e1bb46f4135 | |
| parent | 49d7eda284f4a4a62b515f5cbd58bf448cba9f83 (diff) | |
| download | cgeo-caf3063c5632e8ccefc08422942f35090a2a6a48.zip cgeo-caf3063c5632e8ccefc08422942f35090a2a6a48.tar.gz cgeo-caf3063c5632e8ccefc08422942f35090a2a6a48.tar.bz2 | |
fix #668: remove icons for locationless cache
| -rw-r--r-- | main/res/drawable-hdpi/marker_cache_locationless.png | bin | 3907 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable-hdpi/marker_cache_locationless_disabled.png | bin | 3849 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable-hdpi/marker_cache_locationless_found.png | bin | 4520 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable-hdpi/marker_cache_locationless_own.png | bin | 4305 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable-hdpi/type_locationless.png | bin | 1593 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable/marker_cache_locationless.png | bin | 2978 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable/marker_cache_locationless_disabled.png | bin | 3242 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable/marker_cache_locationless_found.png | bin | 3387 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable/marker_cache_locationless_own.png | bin | 3251 -> 0 bytes | |||
| -rw-r--r-- | main/res/drawable/type_locationless.png | bin | 881 -> 0 bytes | |||
| -rw-r--r-- | main/src/cgeo/geocaching/cgBase.java | 5 |
11 files changed, 0 insertions, 5 deletions
diff --git a/main/res/drawable-hdpi/marker_cache_locationless.png b/main/res/drawable-hdpi/marker_cache_locationless.png Binary files differdeleted file mode 100644 index c8daf38..0000000 --- a/main/res/drawable-hdpi/marker_cache_locationless.png +++ /dev/null diff --git a/main/res/drawable-hdpi/marker_cache_locationless_disabled.png b/main/res/drawable-hdpi/marker_cache_locationless_disabled.png Binary files differdeleted file mode 100644 index 9f37db5..0000000 --- a/main/res/drawable-hdpi/marker_cache_locationless_disabled.png +++ /dev/null diff --git a/main/res/drawable-hdpi/marker_cache_locationless_found.png b/main/res/drawable-hdpi/marker_cache_locationless_found.png Binary files differdeleted file mode 100644 index 948b266..0000000 --- a/main/res/drawable-hdpi/marker_cache_locationless_found.png +++ /dev/null diff --git a/main/res/drawable-hdpi/marker_cache_locationless_own.png b/main/res/drawable-hdpi/marker_cache_locationless_own.png Binary files differdeleted file mode 100644 index 82b24ed..0000000 --- a/main/res/drawable-hdpi/marker_cache_locationless_own.png +++ /dev/null diff --git a/main/res/drawable-hdpi/type_locationless.png b/main/res/drawable-hdpi/type_locationless.png Binary files differdeleted file mode 100644 index 9eea7bf..0000000 --- a/main/res/drawable-hdpi/type_locationless.png +++ /dev/null diff --git a/main/res/drawable/marker_cache_locationless.png b/main/res/drawable/marker_cache_locationless.png Binary files differdeleted file mode 100644 index 624baf9..0000000 --- a/main/res/drawable/marker_cache_locationless.png +++ /dev/null diff --git a/main/res/drawable/marker_cache_locationless_disabled.png b/main/res/drawable/marker_cache_locationless_disabled.png Binary files differdeleted file mode 100644 index 6f5115d..0000000 --- a/main/res/drawable/marker_cache_locationless_disabled.png +++ /dev/null diff --git a/main/res/drawable/marker_cache_locationless_found.png b/main/res/drawable/marker_cache_locationless_found.png Binary files differdeleted file mode 100644 index 5c744b4..0000000 --- a/main/res/drawable/marker_cache_locationless_found.png +++ /dev/null diff --git a/main/res/drawable/marker_cache_locationless_own.png b/main/res/drawable/marker_cache_locationless_own.png Binary files differdeleted file mode 100644 index 3e9d96b..0000000 --- a/main/res/drawable/marker_cache_locationless_own.png +++ /dev/null diff --git a/main/res/drawable/type_locationless.png b/main/res/drawable/type_locationless.png Binary files differdeleted file mode 100644 index 50fc83d..0000000 --- a/main/res/drawable/type_locationless.png +++ /dev/null diff --git a/main/src/cgeo/geocaching/cgBase.java b/main/src/cgeo/geocaching/cgBase.java index 1a3a466..2ea376f 100644 --- a/main/src/cgeo/geocaching/cgBase.java +++ b/main/src/cgeo/geocaching/cgBase.java @@ -3175,7 +3175,6 @@ public class cgBase { gcIcons.put("type_earth", R.drawable.type_earth); gcIcons.put("type_event", R.drawable.type_event); gcIcons.put("type_letterbox", R.drawable.type_letterbox); - gcIcons.put("type_locationless", R.drawable.type_locationless); gcIcons.put("type_mega", R.drawable.type_mega); gcIcons.put("type_multi", R.drawable.type_multi); gcIcons.put("type_traditional", R.drawable.type_traditional); @@ -3190,7 +3189,6 @@ public class cgBase { gcIcons.put(CacheType.EARTH.id, R.drawable.marker_cache_earth); gcIcons.put(CacheType.EVENT.id, R.drawable.marker_cache_event); gcIcons.put(CacheType.LETTERBOX.id, R.drawable.marker_cache_letterbox); - gcIcons.put("locationless", R.drawable.marker_cache_locationless); gcIcons.put(CacheType.MEGA_EVENT.id, R.drawable.marker_cache_mega); gcIcons.put(CacheType.MULTI.id, R.drawable.marker_cache_multi); gcIcons.put(CacheType.TRADITIONAL.id, R.drawable.marker_cache_traditional); @@ -3205,7 +3203,6 @@ public class cgBase { gcIcons.put("earth-own", R.drawable.marker_cache_earth_own); gcIcons.put("event-own", R.drawable.marker_cache_event_own); gcIcons.put("letterbox-own", R.drawable.marker_cache_letterbox_own); - gcIcons.put("locationless-own", R.drawable.marker_cache_locationless_own); gcIcons.put("mega-own", R.drawable.marker_cache_mega_own); gcIcons.put("multi-own", R.drawable.marker_cache_multi_own); gcIcons.put("traditional-own", R.drawable.marker_cache_traditional_own); @@ -3220,7 +3217,6 @@ public class cgBase { gcIcons.put("earth-found", R.drawable.marker_cache_earth_found); gcIcons.put("event-found", R.drawable.marker_cache_event_found); gcIcons.put("letterbox-found", R.drawable.marker_cache_letterbox_found); - gcIcons.put("locationless-found", R.drawable.marker_cache_locationless_found); gcIcons.put("mega-found", R.drawable.marker_cache_mega_found); gcIcons.put("multi-found", R.drawable.marker_cache_multi_found); gcIcons.put("traditional-found", R.drawable.marker_cache_traditional_found); @@ -3235,7 +3231,6 @@ public class cgBase { gcIcons.put("earth-disabled", R.drawable.marker_cache_earth_disabled); gcIcons.put("event-disabled", R.drawable.marker_cache_event_disabled); gcIcons.put("letterbox-disabled", R.drawable.marker_cache_letterbox_disabled); - gcIcons.put("locationless-disabled", R.drawable.marker_cache_locationless_disabled); gcIcons.put("mega-disabled", R.drawable.marker_cache_mega_disabled); gcIcons.put("multi-disabled", R.drawable.marker_cache_multi_disabled); gcIcons.put("traditional-disabled", R.drawable.marker_cache_traditional_disabled); |
