]> err.no Git - mapper/commitdiff
More build fixes
authorKaj-Michael Lang <milang@tal.org>
Wed, 16 Jul 2008 14:18:24 +0000 (17:18 +0300)
committerKaj-Michael Lang <milang@tal.org>
Wed, 16 Jul 2008 14:18:24 +0000 (17:18 +0300)
src/cb.c
src/path-mapper.c
src/path-mapper.h

index 63644b97b584dc91fed5ac3f97b8862110964ce4..1bcef4fff3d936defcd7aab2d49ea79447c77dca 100644 (file)
--- a/src/cb.c
+++ b/src/cb.c
@@ -159,7 +159,7 @@ return TRUE;
 gboolean 
 menu_cb_track_insert_break(GtkAction *action)
 {
-path_insert_break(_track);
+path_add_break(_track);
 path_tree_view_update_store(track_tree_view, _track);
 return TRUE;
 }
@@ -167,9 +167,8 @@ return TRUE;
 gboolean 
 menu_cb_track_insert_mark(GtkAction *action)
 {
-if (path_insert_mark(_track)) {
+if (path_insert_mark_ask(_track))
        path_tree_view_update_store(track_tree_view, _track);
-}
 return TRUE;
 }
 
index 3457da2dfc65bf1c026e9cb2691080e59c748c23..8d2063a4e4bf061d52f2783c36f11743e01b9ef9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of mapper
+ * This file is part of Mapper
  *
  * Copyright (C) 2007-2008 Kaj-Michael Lang
  *
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
+
+/**
+ * Contains extra path functions. 
+ */
+
 #include <config.h>
 
 #include <libgnomevfs/gnome-vfs.h>
@@ -74,7 +79,7 @@ return res;
 }
 
 /**
- *
+ * path_show_distance_from:
  *
  */
 void 
@@ -113,6 +118,8 @@ path_show_distance_from(path, path->head);
 }
 
 /**
+ * route_show_distance_to: 
+ *
  * Show the distance from the current GPS location to the given point,
  * following the route. If point is NULL, then the distance is shown to the
  * next waypoint.
@@ -134,6 +141,10 @@ MACRO_BANNER_SHOW_INFO(_window, buffer);
 return TRUE;
 }
 
+/**
+ * route_show_distance_to_next_waypoint:
+ *
+ */
 void 
 route_show_distance_to_next_waypoint(Path *route)
 {
@@ -143,6 +154,10 @@ if (!route_show_distance_to(route, NULL))
        MACRO_BANNER_SHOW_INFO(_window, _("There is no next waypoint."));
 }
 
+/**
+ * route_show_distance_to_last:
+ *
+ */
 void 
 route_show_distance_to_last(Path *route)
 {
@@ -626,7 +641,7 @@ return r;
  *
  */
 gboolean
-track_insert_mark(Path *track)
+path_insert_mark_ask(Path *track)
 {
 gchar tmp1[16], tmp2[16], *p_latlon;
 GtkWidget *dialog;
index 88504b1497d8ba11d16d989363e70488f02fd52c..81cc389d8f04be029a2530b414106e5f617ab05e 100644 (file)
@@ -36,6 +36,7 @@ gboolean route_download(Path *route, gchar *to);
 gboolean route_clear(Path *route);
 
 gboolean path_clear_ask(Path *path, const gchar *msg);
+gboolean path_insert_mark_ask(Path *track);
 
 void route_autoroute_check(Path *route);
 gboolean route_show_distance_to(Path *route, Point *point);