diff options
author | monsta <[email protected]> | 2016-02-01 20:19:56 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-02-01 20:19:56 +0300 |
commit | 2516ef9c59e0abd203afffec777d3e76d5ea04e8 (patch) | |
tree | d2d716c27ef4b0ed0fbea8960eaddd56ffeb6b79 /mateweather/mateweather-applet.c | |
parent | 1de8fc887996b0d5f3ee6dd6c5ac193d6c03bdee (diff) | |
download | mate-applets-2516ef9c59e0abd203afffec777d3e76d5ea04e8.tar.bz2 mate-applets-2516ef9c59e0abd203afffec777d3e76d5ea04e8.tar.xz |
weather: fix some typos and remove some dead code
Diffstat (limited to 'mateweather/mateweather-applet.c')
-rw-r--r-- | mateweather/mateweather-applet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mateweather/mateweather-applet.c b/mateweather/mateweather-applet.c index a3fdfd73..bf737800 100644 --- a/mateweather/mateweather-applet.c +++ b/mateweather/mateweather-applet.c @@ -405,7 +405,7 @@ gint timeout_cb (gpointer data) MateWeatherApplet *gw_applet = (MateWeatherApplet *)data; mateweather_update(gw_applet); - return 0; /* Do not repeat timeout (will be re-set by mateweather_update) */ + return 0; /* Do not repeat timeout (will be reset by mateweather_update) */ } static void @@ -517,7 +517,7 @@ gint suncalc_timeout_cb (gpointer data) { WeatherInfo *info = ((MateWeatherApplet *)data)->mateweather_info; update_finish(info, data); - return 0; /* Do not repeat timeout (will be re-set by update_finish) */ + return 0; /* Do not repeat timeout (will be reset by update_finish) */ } |