From 2116f4f88c5de0d37ce6ae6021199697c6c3b451 Mon Sep 17 00:00:00 2001 From: frosch95 Date: Sun, 29 Sep 2013 13:50:01 +0200 Subject: [PATCH] added cito event and mega event type --- src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java | 2 ++ src/de/frosch95/geofrogger/model/Type.java | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java b/src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java index f0bcd4e..5c64176 100644 --- a/src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java +++ b/src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java @@ -63,6 +63,8 @@ public class GeocachingIcons { break; case EVENT: + case CITO_EVENT: + case MEGA_EVENT: iconName = "/icons/iconmonstr-calendar-4-icon.png"; break; diff --git a/src/de/frosch95/geofrogger/model/Type.java b/src/de/frosch95/geofrogger/model/Type.java index fe9eec2..eb309c8 100644 --- a/src/de/frosch95/geofrogger/model/Type.java +++ b/src/de/frosch95/geofrogger/model/Type.java @@ -15,7 +15,9 @@ public enum Type { EVENT("Event Cache"), WHERIGO("Wherigo 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;