]> err.no Git - mapper/commitdiff
Use common path_insert_mark_text
authorKaj-Michael Lang <milang@onion.tal.org>
Thu, 6 Mar 2008 12:08:34 +0000 (14:08 +0200)
committerKaj-Michael Lang <milang@onion.tal.org>
Thu, 6 Mar 2008 12:08:34 +0000 (14:08 +0200)
src/poi-gui.c
src/track.c

index 82f114860ae87dcecee45d252a2dbf5c1d886c7a..fd55bb7765b26191e7f06e98bd03e44ec8d1e7ec 100644 (file)
@@ -1006,7 +1006,7 @@ if (poi_add(p)==FALSE) {
        /* Add a text break to the current track */
        /* XXX: Get category string in here if label is empty */
        txt=g_strdup_printf("QP(%d): %f %f %s", p->cat_id, p->lat, p->lon, p->label);
-       track_insert_mark_text(txt);
+       path_insert_mark_text(&_track, txt);
 
        map_force_redraw();
        if (qpdata->close==TRUE)
index ad6317bb152796f27043f8b28507ed64e56df351..363fcd1b04dbff7419ae5d2bf6d9d74a1488b153 100644 (file)
@@ -256,18 +256,6 @@ if (file_save(&_track_file_uri, &_track_file_uri, &handle)) {
 return r;
 }
 
-/**
- * Add a text description at current point
- * 
- */
-void 
-track_insert_mark_text(gchar *text)
-{
-MACRO_PATH_INCREMENT_WTAIL(_track);
-_track.wtail->point = _track.tail;
-_track.wtail->desc = text;
-}
-
 /**
  * Ask for a text description for the current point
  *
@@ -329,7 +317,7 @@ while (GTK_RESPONSE_ACCEPT == gtk_dialog_run(GTK_DIALOG(dialog))) {
        gtk_text_buffer_get_end_iter(tbuf, &ti2);
 
        if (gtk_text_buffer_get_char_count(tbuf)>0) {
-               track_insert_mark_text(gtk_text_buffer_get_text(tbuf, &ti1, &ti2, TRUE));
+               path_insert_mark_text(&_track, gtk_text_buffer_get_text(tbuf, &ti1, &ti2, TRUE));
        } else {
                popup_error(dialog, _("Please provide a description for the mark."));
                continue;