typos in comments

This commit is contained in:
sonora 2014-09-10 23:07:39 +02:00
parent a15eadd207
commit 6673001c74

View file

@ -228,15 +228,15 @@ public class WaypointHelper {
if(type == ALARMS) { if(type == ALARMS) {
return showAlarms() || announceAlarms(); return showAlarms() || announceAlarms();
} else if(type == POI) { } else if(type == POI) {
//no SHOW item in settings, hence only query ANNOUNE here //no SHOW item in nav settings, hence only query ANNOUNCE here (makes inital Waypoint dialogue consistent with nav settings)
//return showPOI() || announcePOI(); //return showPOI() || announcePOI();
return announcePOI(); return announcePOI();
} else if(type == FAVORITES) { } else if(type == FAVORITES) {
//no SHOW item in settings, hence only query ANNOUNE here //no SHOW item in nav settings, hence only query ANNOUNCE here (makes inital Waypoint dialogue consistent with nav settings)
//return showFavorites() || announceFavorites(); //return showFavorites() || announceFavorites();
return announceFavorites(); return announceFavorites();
} else if(type == WAYPOINTS) { } else if(type == WAYPOINTS) {
//no SHOW item in settings, hence only query ANNOUNE here //no SHOW item in nav settings, hence only query ANNOUNCE here (makes inital Waypoint dialogue consistent with nav settings)
//return showGPXWaypoints() || announceGPXWaypoints(); //return showGPXWaypoints() || announceGPXWaypoints();
return announceGPXWaypoints(); return announceGPXWaypoints();
} }