summaryrefslogtreecommitdiffstats
path: root/friendfinder/e_smart_map.c
diff options
context:
space:
mode:
authorPatrick Hornecker2010-01-04 17:05:27 +0100
committerPatrick Hornecker2010-01-04 17:05:27 +0100
commit0ff5700527431d9372ae56179f541bcea2a72f97 (patch)
treebfa8e354e860327520bc5a25f76104c837734a96 /friendfinder/e_smart_map.c
parentdrawing of user positions (diff)
downloadfriendfinder-0ff5700527431d9372ae56179f541bcea2a72f97.tar.gz
friendfinder-0ff5700527431d9372ae56179f541bcea2a72f97.tar.xz
friendfinder-0ff5700527431d9372ae56179f541bcea2a72f97.zip
more position features
Diffstat (limited to 'friendfinder/e_smart_map.c')
-rw-r--r--friendfinder/e_smart_map.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/friendfinder/e_smart_map.c b/friendfinder/e_smart_map.c
index dc32412..a35abf3 100644
--- a/friendfinder/e_smart_map.c
+++ b/friendfinder/e_smart_map.c
@@ -80,7 +80,7 @@ static struct bubble *create_text_bubble(struct smart_map *smart, char *info, ch
bubble->object.oy = -14;
bubble->object.sw = 480;
bubble->object.sh = 640;
- fprintf(stderr, "FIXME: %s:%i\n", __FILE__, __LINE__);
+ //fprintf(stderr, "FIXME: %s:%i\n", __FILE__, __LINE__);
return bubble;
}
@@ -150,6 +150,7 @@ void e_smart_map_get_pos(Evas_Object *o, double *lat, double *lon)
smart = evas_object_smart_data_get(o);
*lat = smart->lat;
*lon = smart->lon;
+ printf("%f \n", smart->lat);
}