aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/apps
diff options
context:
space:
mode:
authorkoem <koem@petoria.de>2013-02-09 18:14:29 +1300
committerkoem <koem@petoria.de>2013-02-11 08:16:24 +1300
commit8bc22701fbef17c24de6f2f8af282da08eba5766 (patch)
tree7f81de606dab7eb5dab6d20cac2af1c00b99ceba /main/src/cgeo/geocaching/apps
parent509cefa3af847129bf40cff15437183d950752a7 (diff)
downloadcgeo-8bc22701fbef17c24de6f2f8af282da08eba5766.zip
cgeo-8bc22701fbef17c24de6f2f8af282da08eba5766.tar.gz
cgeo-8bc22701fbef17c24de6f2f8af282da08eba5766.tar.bz2
Icons for OC
- new icons for opencaching - changed some icons because of copyright - english strings for opencaching attributes - german strings for opencaching attributes - new script to show (missing) strings for attributes - new script to edit svg files from thenounproject.com - new script to generate enums - ocicons.html: list of all OC icons
Diffstat (limited to 'main/src/cgeo/geocaching/apps')
-rw-r--r--main/src/cgeo/geocaching/apps/cache/CacheBeaconApp.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/apps/cache/CacheBeaconApp.java b/main/src/cgeo/geocaching/apps/cache/CacheBeaconApp.java
index 1f38ca7..9cfafb4 100644
--- a/main/src/cgeo/geocaching/apps/cache/CacheBeaconApp.java
+++ b/main/src/cgeo/geocaching/apps/cache/CacheBeaconApp.java
@@ -1,7 +1,7 @@
package cgeo.geocaching.apps.cache;
-import cgeo.geocaching.R;
import cgeo.geocaching.Geocache;
+import cgeo.geocaching.R;
import cgeo.geocaching.enumerations.CacheAttribute;
public class CacheBeaconApp extends AbstractGeneralApp {
@@ -12,7 +12,7 @@ public class CacheBeaconApp extends AbstractGeneralApp {
@Override
public boolean isEnabled(Geocache cache) {
- return cache.hasAttribute(CacheAttribute.WIRELESS_BEACON, true);
+ return cache.hasAttribute(CacheAttribute.WIRELESSBEACON, true);
}
}