]> err.no Git - mapper/commitdiff
Fix arguments to gtk_map_goto_position()
authorKaj-Michael Lang <milang@tal.org>
Wed, 16 Jul 2008 13:41:00 +0000 (16:41 +0300)
committerKaj-Michael Lang <milang@tal.org>
Wed, 16 Jul 2008 13:41:00 +0000 (16:41 +0300)
src/cb.c

index 13653d454a8f71b91077918ca9385416dc339646..63644b97b584dc91fed5ac3f97b8862110964ce4 100644 (file)
--- a/src/cb.c
+++ b/src/cb.c
@@ -302,7 +302,7 @@ return TRUE;
 gboolean 
 menu_cb_goto_home(GtkAction *action)
 {
-if (gtk_map_goto_position(_home)==FALSE) {
+if (gtk_map_goto_position(_map, _home)==FALSE) {
        MACRO_BANNER_SHOW_INFO(_window, _("Home not set."));
 } else {
        if (gtk_map_get_zoom(_map)>3)
@@ -315,7 +315,7 @@ return TRUE;
 gboolean 
 menu_cb_goto_destination(GtkAction *action)
 {
-if (gtk_map_goto_position(_dest)==FALSE) {
+if (gtk_map_goto_position(_map, _dest)==FALSE) {
        MACRO_BANNER_SHOW_INFO(_window, _("Destination has not been set."));
 } else {
        if (gtk_map_get_zoom(_map)>3)