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 | |
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')
-rw-r--r-- | src/datetime-prefs-locations.c | 4 | ||||
-rw-r--r-- | src/datetime-prefs.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/datetime-prefs-locations.c b/src/datetime-prefs-locations.c index c0452d0..9f5b42c 100644 --- a/src/datetime-prefs-locations.c +++ b/src/datetime-prefs-locations.c @@ -201,8 +201,8 @@ timezone_selected (GtkEntryCompletion * widget, GtkTreeModel * model, CC_TIMEZONE_COMPLETION_LONGITUDE, &strlon, -1); - if (strlat && *strlat) lat = atof(strlat); - if (strlon && *strlon) lon = atof(strlon); + if (strlat && *strlat) lat = g_ascii_strtod(strlat, NULL); + if (strlon && *strlon) lon = g_ascii_strtod(strlon, NULL); CcTimezoneMap * tzmap = CC_TIMEZONE_MAP (g_object_get_data (G_OBJECT (widget), "tzmap")); g_free (zone); 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); |