]> err.no Git - mapper/commitdiff
Fix compilation problems with later gcc
authorKaj-Michael Lang <milang@angel.tal.org>
Wed, 26 Sep 2007 07:13:10 +0000 (10:13 +0300)
committerKaj-Michael Lang <milang@angel.tal.org>
Wed, 26 Sep 2007 07:13:10 +0000 (10:13 +0300)
src/map.c
src/map.h
src/osm.c

index 9ccdede59bfa00310db2ebc5c0529f57346a7ee1..34e7d0ff01abc6327abeefeb8ae440b3725c5e24 100644 (file)
--- a/src/map.c
+++ b/src/map.c
@@ -132,8 +132,8 @@ gdk_draw_line(_map_widget->window,
  * "Set" the mark, which translates the current GPS position into on-screen
  * units in preparation for drawing the mark with map_draw_mark().
  */
-static void 
-map_set_mark()
+void 
+map_set_mark(void)
 {
 _mark_x1 = unit2x(_pos.unitx);
 _mark_y1 = unit2y(_pos.unity);
@@ -493,7 +493,7 @@ map_center_unit(_center.unitx + delta_unitx, _center.unity + delta_unity);
  * draw area of the new mark.
  */
 void 
-map_move_mark()
+map_move_mark(void)
 {
 /* Just queue the old and new draw areas. */
 gtk_widget_queue_draw_area(_map_widget,
index cac230dd7621e034850040902f9afc18e2044f74..21274c5700e4f313e1c89a9282de97c31ff95f8d 100644 (file)
--- a/src/map.h
+++ b/src/map.h
@@ -70,13 +70,13 @@ gdouble _map_location_dist;
 
 gboolean map_key_zoom_timeout();
 
-void map_set_autozoom(gboolean az);
 int map_zoom(gint zdir);
-void map_move_mark();
+void map_set_autozoom(gboolean az);
 void map_render_path(Path * path, GdkGC ** gc);
 void map_center_unit(guint new_center_unitx, guint new_center_unity);
 void map_pan(gint delta_unitx, gint delta_unity);
-void map_set_mark();
+void map_move_mark(void);
+void map_set_mark(void);
 
 gboolean map_cb_configure(GtkWidget * widget, GdkEventConfigure * event);
 gboolean map_cb_expose(GtkWidget * widget, GdkEventExpose * event);
index f571364f29661ca627054ce28ed39f717d5100c4..97301ba45294c40bd11d74339e6352e9b0d40c69 100644 (file)
--- a/src/osm.c
+++ b/src/osm.c
@@ -353,7 +353,7 @@ sqlite3_exec(db, "PRAGMA cache_size = 8000;", NULL, NULL, NULL);
 
 /********************************************************************/
 
-static gboolean
+gboolean
 db_insert_node(node *n)
 {
 gint32 lat, lon;