X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/9c4555df235bd378e819a87e27c04141eec5d586..6b59f63de80e2fed207ae07ff7a7173ce760a6df:/src/datasource_osm.c diff --git a/src/datasource_osm.c b/src/datasource_osm.c index 36f0e975..9315f5c8 100644 --- a/src/datasource_osm.c +++ b/src/datasource_osm.c @@ -1,7 +1,7 @@ /* * viking -- GPS Data and Topo Analyzer, Explorer, and Manager * - * Copyright (C) 2011, Guilhem Bonnefille + * Copyright (C) 2011, Guilhem Bonnefille * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -60,6 +60,7 @@ VikDataSourceInterface vik_datasource_osm_interface = { (VikDataSourceCheckExistenceFunc) NULL, (VikDataSourceAddSetupWidgetsFunc) datasource_osm_add_setup_widgets, (VikDataSourceGetCmdStringFunc) datasource_osm_get_cmd_string, + (VikDataSourceProcessFunc) NULL, (VikDataSourceProgressFunc) NULL, (VikDataSourceAddProgressWidgetsFunc) NULL, (VikDataSourceCleanupFunc) datasource_osm_cleanup, @@ -95,7 +96,7 @@ static void datasource_osm_get_cmd_string ( datasource_osm_widgets_t *widgets, g gchar sminlat[G_ASCII_DTOSTR_BUF_SIZE]; gchar smaxlat[G_ASCII_DTOSTR_BUF_SIZE]; - /* TODO get Viewport bounding box vik_viewport_get_min_max_lat_lon */ + /* get Viewport bounding box */ vik_viewport_get_min_max_lat_lon ( widgets->vvp, &min_lat, &max_lat, &min_lon, &max_lon ); /* Convert as LANG=C double representation */