diff options
author | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-02-11 00:33:13 +0800 |
---|---|---|
committer | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-02-11 00:33:13 +0800 |
commit | c67c5a9be200f32e0c5c60482e1e9336563097fa (patch) | |
tree | 926132bbd5454376881b7c60c0c6c7e152c1d4b1 | |
parent | 88a5543b8525cdf6d3b873201443dba46105068f (diff) | |
download | marcuscom-ports-c67c5a9be200f32e0c5c60482e1e9336563097fa.tar marcuscom-ports-c67c5a9be200f32e0c5c60482e1e9336563097fa.tar.gz marcuscom-ports-c67c5a9be200f32e0c5c60482e1e9336563097fa.tar.bz2 marcuscom-ports-c67c5a9be200f32e0c5c60482e1e9336563097fa.tar.lz marcuscom-ports-c67c5a9be200f32e0c5c60482e1e9336563097fa.tar.xz marcuscom-ports-c67c5a9be200f32e0c5c60482e1e9336563097fa.tar.zst marcuscom-ports-c67c5a9be200f32e0c5c60482e1e9336563097fa.zip |
Fix build on 4.x, possibly on other versions.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3617 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | mail/evolution/files/patch-plugins_calendar-weather_calendar-weather.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mail/evolution/files/patch-plugins_calendar-weather_calendar-weather.c b/mail/evolution/files/patch-plugins_calendar-weather_calendar-weather.c new file mode 100644 index 000000000..7aae64622 --- /dev/null +++ b/mail/evolution/files/patch-plugins_calendar-weather_calendar-weather.c @@ -0,0 +1,23 @@ +--- plugins/calendar-weather/calendar-weather.c.orig Thu Feb 10 11:27:00 2005 ++++ plugins/calendar-weather/calendar-weather.c Thu Feb 10 11:29:47 2005 +@@ -57,13 +57,13 @@ + } + } + if (!found) { +- e_categories_add (_("Weather: Cloudy"), NULL, WEATHER_DATADIR "/category_weather_cloudy_16.png"); +- e_categories_add (_("Weather: Fog"), NULL, WEATHER_DATADIR "/category_weather_fog_16.png"); +- e_categories_add (_("Weather: Partly Cloudy"), NULL, WEATHER_DATADIR "/category_weather_partly_cloudy_16.png"); +- e_categories_add (_("Weather: Rain"), NULL, WEATHER_DATADIR "/category_weather_rain_16.png"); +- e_categories_add (_("Weather: Snow"), NULL, WEATHER_DATADIR "/category_weather_snow_16.png"); +- e_categories_add (_("Weather: Sunny"), NULL, WEATHER_DATADIR "/category_weather_sun_16.png"); +- e_categories_add (_("Weather: Thunderstorms"), NULL, WEATHER_DATADIR "/category_weather_tstorm_16.png"); ++ e_categories_add (_("Weather: Cloudy"), NULL, WEATHER_DATADIR "/category_weather_cloudy_16.png", FALSE); ++ e_categories_add (_("Weather: Fog"), NULL, WEATHER_DATADIR "/category_weather_fog_16.png", FALSE); ++ e_categories_add (_("Weather: Partly Cloudy"), NULL, WEATHER_DATADIR "/category_weather_partly_cloudy_16.png", FALSE); ++ e_categories_add (_("Weather: Rain"), NULL, WEATHER_DATADIR "/category_weather_rain_16.png", FALSE); ++ e_categories_add (_("Weather: Snow"), NULL, WEATHER_DATADIR "/category_weather_snow_16.png", FALSE); ++ e_categories_add (_("Weather: Sunny"), NULL, WEATHER_DATADIR "/category_weather_sun_16.png", FALSE); ++ e_categories_add (_("Weather: Thunderstorms"), NULL, WEATHER_DATADIR "/category_weather_tstorm_16.png", FALSE); + } + + return 0; |