]> err.no Git - mapper/commitdiff
Fix toolbar add POI location
authorKaj-Michael Lang <milang@angel.tal.org>
Fri, 27 Jul 2007 10:15:50 +0000 (13:15 +0300)
committerKaj-Michael Lang <milang@angel.tal.org>
Fri, 27 Jul 2007 10:15:50 +0000 (13:15 +0300)
src/cb.c

index 64e5eb23fd189bb4641c88581a4baa6455abdcc4..a1d35544f58e880ff49efdba756022fed8cf9778 100644 (file)
--- a/src/cb.c
+++ b/src/cb.c
@@ -1231,9 +1231,11 @@ gboolean cmenu_cb_loc_add_poi(GtkAction * action)
 
 gboolean cb_add_poi(GtkAction * action)
 {
+       guint unitx, unity;
        printf("%s()\n", __PRETTY_FUNCTION__);
 
-       poi_dialog(ACTION_ADD_POI, _gps.lat, _gps.lon);
+       latlon2unit(_gps.lat, _gps.lon, unitx, unity);
+       poi_dialog(ACTION_ADD_POI, unitx, unity);
 
        vprintf("%s(): return TRUE\n", __PRETTY_FUNCTION__);
        return TRUE;