]> err.no Git - mapper/commitdiff
Rename write_gpx -> gpx_write and parse_gpx -> gpx_parse
authorKaj-Michael Lang <milang@onion.tal.org>
Tue, 18 Mar 2008 15:09:05 +0000 (17:09 +0200)
committerKaj-Michael Lang <milang@onion.tal.org>
Tue, 18 Mar 2008 15:09:05 +0000 (17:09 +0200)
src/config-gconf.c
src/gpx.c
src/gpx.h
src/map-download.c
src/route.c
src/track.c

index 9da3346073790f198f74e6dde03a90e1f03b102a..8d7cfd4a430fe41b0a7599d5aedb8a244ad1b084 100644 (file)
@@ -85,7 +85,7 @@ GnomeVFSHandle *handle;
 gchar *tfile;
 tfile=gnome_vfs_uri_make_full_from_relative(config_dir, file);
 if (GNOME_VFS_OK == gnome_vfs_create(&handle, tfile, GNOME_VFS_OPEN_WRITE, FALSE, 0600)) {
-       write_gpx(path, handle);
+       gpx_write(path, handle);
        gnome_vfs_close(handle);
 }
 g_free(tfile);
@@ -426,7 +426,7 @@ gint size;
 
 pfile = gnome_vfs_uri_make_full_from_relative(config_dir, file);
 if (GNOME_VFS_OK == gnome_vfs_read_entire_file(pfile, &size, &bytes))
-       parse_gpx(path, bytes, size, 0);        /* 0 to replace track. */
+       gpx_parse(path, bytes, size, 0);        /* 0 to replace track. */
 g_free(pfile);
 }
 
index 82e2b07ebca3f75e9a107597979d0c5e03739024..2b8ef15a0f60df2675f75864a5090ae97eccfea3 100644 (file)
--- a/src/gpx.c
+++ b/src/gpx.c
@@ -113,7 +113,7 @@ g_snprintf(XML_TZONE, sizeof(XML_TZONE), "%+03ld:%02ld", (time2.tm_gmtoff / 60 /
 }
 
 gboolean 
-write_gpx(Path *path, GnomeVFSHandle *handle)
+gpx_write(Path *path, GnomeVFSHandle *handle)
 {
 Point *curr = NULL;
 WayPoint *wcurr = NULL;
@@ -498,7 +498,7 @@ data->state = ERROR;
 }
 
 gboolean
-parse_gpx(Path *to_replace, gchar *buffer, gint size, gint policy_old)
+gpx_parse(Path *to_replace, gchar *buffer, gint size, gint policy_old)
 {
 SaxData data;
 xmlSAXHandler sax_handler;
index febce87e7c75395bdcf949aedf1f04d4b8da3d9d..d6c5e5d03ca0e94c0da0801cda1d933fdb1e7407 100644 (file)
--- a/src/gpx.h
+++ b/src/gpx.h
@@ -6,7 +6,7 @@
 #include "path.h"
 
 void gpx_init(void);
-gboolean write_gpx(Path *path, GnomeVFSHandle *handle);
-gboolean parse_gpx(Path *to_replace, gchar *buffer, gint size, gint policy_old);
+gboolean gpx_write(Path *path, GnomeVFSHandle *handle);
+gboolean gpx_parse(Path *to_replace, gchar *buffer, gint size, gint policy_old);
 
 #endif
index ab98d119221d2ae753a8ff90be7c11c49eab231c..44ded6c86e67157058c3c7c37f3c4df521c7d5d3 100644 (file)
@@ -131,7 +131,7 @@ while (_curl_multi && (msg = curl_multi_info_read(_curl_multi, &num_msgs))) {
                if (msg->easy_handle == _autoroute_data.curl_easy) {
                        /* This is the autoroute download. */
                        /* Now, parse the autoroute and update the display. */
-                       if (_autoroute_data.enabled && parse_gpx(&_route, _autoroute_data.rdl_data.bytes, _autoroute_data.rdl_data.bytes_read, 0)) {
+                       if (_autoroute_data.enabled && gpx_parse(&_route, _autoroute_data.rdl_data.bytes, _autoroute_data.rdl_data.bytes_read, 0)) {
                                /* Find the nearest route point, if we're connected. */
                                route_find_nearest_point();
                                map_force_redraw();
index db15a84d56c980b5b049cb00fd6dafec797f5177..3571922ce99030cf250b9f4d9a29680df2caf30d 100644 (file)
@@ -109,7 +109,7 @@ gint size;
 
 if (file_open_get_contents(_route_dir_uri, &buffer, &size)) {
        /* If auto is enabled, append the route, otherwise replace it. */
-       if (parse_gpx(_route, buffer, size, _autoroute_data.enabled ? 0 : 1)) {
+       if (gpx_parse(_route, buffer, size, _autoroute_data.enabled ? 0 : 1)) {
                route_cancel_autoroute(FALSE);
 
                MACRO_BANNER_SHOW_INFO(_window, _("Route Opened"));
@@ -141,7 +141,7 @@ if (_route->head==_route->tail) {
 }
 
 if (file_save(&_route_dir_uri, &_route_dir_uri, &handle)) {
-       if (write_gpx(_route, handle)) {
+       if (gpx_write(_route, handle)) {
                MACRO_BANNER_SHOW_INFO(_window, _("Route Saved"));
        } else {
                popup_error(_window, _("Error writing GPX file."));
@@ -453,7 +453,7 @@ while (GTK_RESPONSE_ACCEPT == gtk_dialog_run(GTK_DIALOG(dialog))) {
                /* Let them try again. */
        }
        /* Else, if GPS is enabled, replace the route, otherwise append it. */
-       else if (parse_gpx(_route, rdl_data.bytes, rdl_data.bytes_read,
+       else if (gpx_parse(_route, rdl_data.bytes, rdl_data.bytes_read,
                           (gtk_toggle_button_get_active
                            (GTK_TOGGLE_BUTTON(oti.rad_use_gps)) ? 0 : 1))) {
                GtkTreeIter iter;
index 38166b87d8b08b6e80a27d18d8300d54ec2df46e..b075c2e79f1aa8da5160a86120b177e03105f99c 100644 (file)
@@ -209,7 +209,7 @@ gint size;
 gboolean r = FALSE;
 
 if (file_open_get_contents(&_track_file_uri, &buffer, &size)) {
-       if (parse_gpx(_track, buffer, size, -1)) {
+       if (gpx_parse(_track, buffer, size, -1)) {
                map_force_redraw();
                MACRO_BANNER_SHOW_INFO(_window, _("Track Opened"));
                r = TRUE;
@@ -228,7 +228,7 @@ GnomeVFSHandle *handle;
 gboolean r = FALSE;
 
 if (file_save(&_track_file_uri, &_track_file_uri, &handle)) {
-       if (write_gpx(_track, handle)) {
+       if (gpx_write(_track, handle)) {
                MACRO_BANNER_SHOW_INFO(_window, _("Track Saved"));
                r = TRUE;
                track_clear();