diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2012-04-18 23:33:46 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2012-04-18 23:33:46 -0400 |
commit | b952244ee2b886a1e82f3208f44d54c3a926eaca (patch) | |
tree | 0085ae19befde338aea637bfab5276966381aa76 /src/datetime-prefs.c | |
parent | 5683a5c36f4c318ea29ba01f591814af20fcc73d (diff) | |
parent | 31125e1a32660e4b07d30e37993ac7d09fec9ff6 (diff) | |
download | ayatana-indicator-datetime-b952244ee2b886a1e82f3208f44d54c3a926eaca.tar.gz ayatana-indicator-datetime-b952244ee2b886a1e82f3208f44d54c3a926eaca.tar.bz2 ayatana-indicator-datetime-b952244ee2b886a1e82f3208f44d54c3a926eaca.zip |
releasing version 0.3.94-0ubuntu2
Diffstat (limited to 'src/datetime-prefs.c')
-rw-r--r-- | src/datetime-prefs.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |