sound: Add get_help_uri() implementation

https://bugzilla.gnome.org/show_bug.cgi?id=675471
This commit is contained in:
Florian Müllner 2012-05-18 17:07:48 +02:00
parent dc381014c0
commit 45b793848f

View file

@ -67,10 +67,19 @@ cc_sound_panel_set_property (GObject *object,
}
}
static const char *
cc_sound_panel_get_help_uri (CcPanel *panel)
{
return "help:gnome-help/media#sound";
}
static void
cc_sound_panel_class_init (CcSoundPanelClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
CcPanelClass *panel_class = CC_PANEL_CLASS (klass);
panel_class->get_help_uri = cc_sound_panel_get_help_uri;
object_class->finalize = cc_sound_panel_finalize;
object_class->set_property = cc_sound_panel_set_property;