diff options
Diffstat (limited to 'eel')
-rw-r--r-- | eel/eel-background.c | 6 | ||||
-rw-r--r-- | eel/eel-background.h | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/eel/eel-background.c b/eel/eel-background.c index f43831e0..33803f58 100644 --- a/eel/eel-background.c +++ b/eel/eel-background.c @@ -1230,12 +1230,10 @@ eel_background_receive_dropped_color (EelBackground *background, } void -eel_background_save_to_mateconf (EelBackground *background) +eel_background_save_to_settings (EelBackground *background) { - MateConfClient *client = mateconf_client_get_default (); - if (background->details->bg) - mate_bg_save_to_preferences (background->details->bg, client); + mate_bg_save_to_preferences (background->details->bg); } void diff --git a/eel/eel-background.h b/eel/eel-background.h index 3e299a30..1604b537 100644 --- a/eel/eel-background.h +++ b/eel/eel-background.h @@ -118,7 +118,7 @@ void eel_background_receive_dropped_background_image (Eel /* Gets or creates a background so that it's attached to a widget. */ EelBackground * eel_get_widget_background (GtkWidget *widget); -void eel_background_save_to_mateconf (EelBackground *background); +void eel_background_save_to_settings (EelBackground *background); /* Set activity status of background. Inactive backgrounds are drawn in the theme's INSENSITIVE color. */ void eel_background_set_active (EelBackground *background, |