From 31125e1a32660e4b07d30e37993ac7d09fec9ff6 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 18 Apr 2012 16:22:19 -0500 Subject: Use the same function here as well, just to ensure we're consistent --- src/datetime-prefs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/datetime-prefs.c') diff --git a/src/datetime-prefs.c b/src/datetime-prefs.c index 0e2e99c..c941694 100644 --- a/src/datetime-prefs.c +++ b/src/datetime-prefs.c @@ -613,11 +613,11 @@ timezone_selected (GtkEntryCompletion * widget, GtkTreeModel * model, -1); if (strlon != NULL && strlon[0] != 0) { - lon = strtod(strlon, NULL); + lon = g_ascii_strtod(strlon, NULL); } if (strlat != NULL && strlat[0] != 0) { - lat = strtod(strlat, NULL); + lat = g_ascii_strtod(strlat, NULL); } zone = cc_timezone_map_get_timezone_at_coords (self->priv->tzmap, lon, lat); -- cgit v1.2.3