sound: Use self for object variable name

This commit is contained in:
Robert Ancell 2023-05-31 15:07:47 +12:00 committed by Felipe Borges
parent 868dd6cf7e
commit 90d83f072e

View file

@ -272,10 +272,10 @@ cc_sound_panel_get_help_uri (CcPanel *panel)
static void
cc_sound_panel_finalize (GObject *object)
{
CcSoundPanel *panel = CC_SOUND_PANEL (object);
CcSoundPanel *self = CC_SOUND_PANEL (object);
g_clear_object (&panel->mixer_control);
g_clear_object (&panel->sound_settings);
g_clear_object (&self->mixer_control);
g_clear_object (&self->sound_settings);
G_OBJECT_CLASS (cc_sound_panel_parent_class)->finalize (object);
}