Patch by: Joel Pfaff <joel.pfaff@gmail.com>

2007-11-01  Jens Granseuer  <jensgr@gmx.net>

	Patch by: Joel Pfaff <joel.pfaff@gmail.com>

	* appearance-themes.c: (themes_init): fix build without libXcursor

svn path=/trunk/; revision=8246
This commit is contained in:
Jens Granseuer 2007-11-01 19:22:51 +00:00 committed by Jens Granseuer
parent 405aceb366
commit 782dddf5fe
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2007-11-01 Jens Granseuer <jensgr@gmx.net>
Patch by: Joel Pfaff <joel.pfaff@gmail.com>
* appearance-themes.c: (themes_init): fix build without libXcursor
2007-10-30 Jens Granseuer <jensgr@gmx.net>
* theme-installer.c: (gnome_theme_installer_run): revert last patch,

View file

@ -924,7 +924,9 @@ themes_init (AppearanceData *data)
gconf_client_add_dir (data->client, "/desktop/gnome/interface", GCONF_CLIENT_PRELOAD_NONE, NULL);
gconf_client_notify_add (data->client, METACITY_THEME_KEY, (GConfClientNotifyFunc) theme_gconf_changed, data, NULL, NULL);
gconf_client_notify_add (data->client, CURSOR_THEME_KEY, (GConfClientNotifyFunc) theme_gconf_changed, data, NULL, NULL);
#ifdef HAVE_XCURSOR
gconf_client_notify_add (data->client, CURSOR_SIZE_KEY, (GConfClientNotifyFunc) theme_gconf_changed, data, NULL, NULL);
#endif
gconf_client_notify_add (data->client, BACKGROUND_KEY, (GConfClientNotifyFunc) background_or_font_changed, data, NULL, NULL);
gconf_client_notify_add (data->client, APPLICATION_FONT_KEY, (GConfClientNotifyFunc) background_or_font_changed, data, NULL, NULL);
gconf_client_notify_add (data->client, DESKTOP_FONT_KEY, (GConfClientNotifyFunc) background_or_font_changed, data, NULL, NULL);