diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-07-04 05:28:14 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-07-04 05:28:14 +0800 |
commit | d7d155066d781b13892709226e3384120c27e080 (patch) | |
tree | d578e51b8a2ce41b90aba420c0f7d1373ca15789 /my-evolution/e-summary-weather.c | |
parent | b9df218b343c5992001d37ed39226027b943389f (diff) | |
download | gsoc2013-evolution-d7d155066d781b13892709226e3384120c27e080.tar gsoc2013-evolution-d7d155066d781b13892709226e3384120c27e080.tar.gz gsoc2013-evolution-d7d155066d781b13892709226e3384120c27e080.tar.bz2 gsoc2013-evolution-d7d155066d781b13892709226e3384120c27e080.tar.lz gsoc2013-evolution-d7d155066d781b13892709226e3384120c27e080.tar.xz gsoc2013-evolution-d7d155066d781b13892709226e3384120c27e080.tar.zst gsoc2013-evolution-d7d155066d781b13892709226e3384120c27e080.zip |
Disable bonobo-conf Fix radio button problem
Disable bonobo-conf
Fix radio button problem
svn path=/trunk/; revision=10767
Diffstat (limited to 'my-evolution/e-summary-weather.c')
-rw-r--r-- | my-evolution/e-summary-weather.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/my-evolution/e-summary-weather.c b/my-evolution/e-summary-weather.c index 8f97c813c1..164278fe50 100644 --- a/my-evolution/e-summary-weather.c +++ b/my-evolution/e-summary-weather.c @@ -324,6 +324,18 @@ e_summary_weather_update (ESummary *summary) } static void +weather_free (Weather *w) +{ + g_return_if_fail (w != NULL); + + if (w->handle != NULL) { + gnome_vfs_async_cancel (w->handle); + } + g_free (w->location); + g_free (w->html); + g_free (w); +} +static void e_summary_weather_add_location (ESummary *summary, const char *location) { @@ -701,10 +713,7 @@ e_summary_weather_reconfigure (ESummary *summary) Weather *w; w = old->data; - g_free (w->location); - g_free (w->html); - g_free (w->metar); - g_free (w); + weather_free (w); } g_list_free (weather->weathers); weather->weathers = NULL; |