diff options
author | Rodrigo Moya <rodrigo@novell.com> | 2005-01-25 20:28:23 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2005-01-25 20:28:23 +0800 |
commit | 3b881594ffdcfe226b5591e28b4c7c07677395d5 (patch) | |
tree | 84e0b065b731bf9d6bc52f6c2dda1b12667d6a80 /plugins/calendar-weather | |
parent | bec10b42d373fb28d11df5302d9591394943e3af (diff) | |
download | gsoc2013-evolution-3b881594ffdcfe226b5591e28b4c7c07677395d5.tar.gz gsoc2013-evolution-3b881594ffdcfe226b5591e28b4c7c07677395d5.tar.zst gsoc2013-evolution-3b881594ffdcfe226b5591e28b4c7c07677395d5.zip |
set all new categories to not searchable.
2005-01-25 Rodrigo Moya <rodrigo@novell.com>
* calendar-weather.c (e_plugin_lib_enable): set all new categories to
not searchable.
svn path=/trunk/; revision=28551
Diffstat (limited to 'plugins/calendar-weather')
-rw-r--r-- | plugins/calendar-weather/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/calendar-weather/calendar-weather.c | 14 |
2 files changed, 12 insertions, 7 deletions
diff --git a/plugins/calendar-weather/ChangeLog b/plugins/calendar-weather/ChangeLog index ebd444da26..387e575df8 100644 --- a/plugins/calendar-weather/ChangeLog +++ b/plugins/calendar-weather/ChangeLog @@ -1,3 +1,8 @@ +2005-01-25 Rodrigo Moya <rodrigo@novell.com> + + * calendar-weather.c (e_plugin_lib_enable): set all new categories to + not searchable. + 2005-01-12 David Trowbridge <trowbrds@cs.colorado.edu> * calendar-weather.c (e_calendar_weather_units): fix spelling diff --git a/plugins/calendar-weather/calendar-weather.c b/plugins/calendar-weather/calendar-weather.c index ca969a56d1..976c204d01 100644 --- a/plugins/calendar-weather/calendar-weather.c +++ b/plugins/calendar-weather/calendar-weather.c @@ -57,13 +57,13 @@ e_plugin_lib_enable (EPluginLib *epl, int enable) } } 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; |