added cito event and mega event type

This commit is contained in:
frosch95
2013-09-29 13:50:01 +02:00
parent 82adc5c14d
commit 2116f4f88c
2 changed files with 5 additions and 1 deletions

View File

@@ -63,6 +63,8 @@ public class GeocachingIcons {
break; break;
case EVENT: case EVENT:
case CITO_EVENT:
case MEGA_EVENT:
iconName = "/icons/iconmonstr-calendar-4-icon.png"; iconName = "/icons/iconmonstr-calendar-4-icon.png";
break; break;

View File

@@ -15,7 +15,9 @@ public enum Type {
EVENT("Event Cache"), EVENT("Event Cache"),
WHERIGO("Wherigo Cache"), WHERIGO("Wherigo Cache"),
WEBCAM_CACHE("Webcam Cache"), WEBCAM_CACHE("Webcam Cache"),
VIRTUAL_CACHE("Virtual Cache"); VIRTUAL_CACHE("Virtual Cache"),
CITO_EVENT("Cache In Trash Out Event"),
MEGA_EVENT("Mega-Event Cache");
private String groundspeakString; private String groundspeakString;