aboutsummaryrefslogtreecommitdiff
path: root/src/datetime-prefs.c
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-04-23 13:46:19 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-04-23 13:46:19 -0500
commitbd456c3baa0200b7f8876fc1646ae09dca39c1c2 (patch)
tree4d364570df44e8e2ba4b56c7c653f0818a9d60b1 /src/datetime-prefs.c
parentd3b9fd16b24968091dccd52eb824c213a8b819d3 (diff)
parent31125e1a32660e4b07d30e37993ac7d09fec9ff6 (diff)
downloadayatana-indicator-datetime-bd456c3baa0200b7f8876fc1646ae09dca39c1c2.tar.gz
ayatana-indicator-datetime-bd456c3baa0200b7f8876fc1646ae09dca39c1c2.tar.bz2
ayatana-indicator-datetime-bd456c3baa0200b7f8876fc1646ae09dca39c1c2.zip
merge lp:~ted/indicator-datetime/lp773987 to switch the parsing of the lat and long to be non-locale based as it's returned from the webservice in C, we want to parse it using the decimal instead of a comma.
Diffstat (limited to 'src/datetime-prefs.c')
-rw-r--r--src/datetime-prefs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datetime-prefs.c b/src/datetime-prefs.c
index 615d601..611d9ef 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);