diff options
author | rbuj <[email protected]> | 2020-12-29 13:20:17 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-01-07 18:35:10 +0100 |
commit | d5b116f704848c7224d1cd339be478ecaccdec96 (patch) | |
tree | 576099d2e69b329aaf81e15b79efd7e78591ddf1 /mateweather/src | |
parent | ad76d1dfe9b31be3d9c3bad10712594eb3926ecb (diff) | |
download | mate-applets-d5b116f704848c7224d1cd339be478ecaccdec96.tar.bz2 mate-applets-d5b116f704848c7224d1cd339be478ecaccdec96.tar.xz |
Don't leave any round bracket at line end
Diffstat (limited to 'mateweather/src')
-rw-r--r-- | mateweather/src/mateweather-applet.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mateweather/src/mateweather-applet.c b/mateweather/src/mateweather-applet.c index 216571e0..d32d88bb 100644 --- a/mateweather/src/mateweather-applet.c +++ b/mateweather/src/mateweather-applet.c @@ -461,11 +461,10 @@ update_finish (WeatherInfo *info, gpointer data) message = g_strdup_printf ("%s: %s", weather_info_get_location_name (info), weather_info_get_sky (info)); - detail = g_strdup_printf ( - _("City: %s\nSky: %s\nTemperature: %s"), - weather_info_get_location_name (info), - weather_info_get_sky (info), - weather_info_get_temp_summary (info)); + detail = g_strdup_printf (_("City: %s\nSky: %s\nTemperature: %s"), + weather_info_get_location_name (info), + weather_info_get_sky (info), + weather_info_get_temp_summary (info)); icon = weather_info_get_icon_name (gw_applet->mateweather_info); if (icon == NULL) |