diff options
-rw-r--r-- | navit/map/garmin/garmin.c | 4 | ||||
-rw-r--r-- | navit/osd/core/osd_core.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/navit/map/garmin/garmin.c b/navit/map/garmin/garmin.c index d00cb9794..2e7263081 100644 --- a/navit/map/garmin/garmin.c +++ b/navit/map/garmin/garmin.c @@ -164,7 +164,7 @@ garmin_object_label(struct gobject *o, struct attr *attr) } if (mr->label) { char *cp = mr->label; -#warning FIXME Process label and give only the visible part + /* FIXME Process label and give only the visible part */ if (*mr->label == '@' || *mr->label == '^') cp++; /* FIXME: If zoomlevel is high convert ^ in the string to spaces */ @@ -222,7 +222,7 @@ gmap_search_new(struct map_priv *map, struct item *item, struct attr *search, in case attr_street_name: gs->type = GS_ROAD; break; -#if someday +#if 0 /* someday */ case attr_region_name: case attr_intersection: case attr_housenumber: diff --git a/navit/osd/core/osd_core.c b/navit/osd/core/osd_core.c index 76517c071..d336d36f6 100644 --- a/navit/osd/core/osd_core.c +++ b/navit/osd/core/osd_core.c @@ -657,7 +657,7 @@ static void draw_aligned_osd_text(char *buffer, int align, struct osd_item *osd_ int height=osd_item->font_size*13/256; int yspacing=height/2; int xspacing=height/4; - char *next, *last, *absbegin; + char *next, *last; struct point p, p2[4]; int lines; int do_draw = osd_item->do_draw; |