bluetooth: Add get_help_uri() implementation
https://bugzilla.gnome.org/show_bug.cgi?id=675471
This commit is contained in:
parent
f8637475ba
commit
bc18595051
1 changed files with 9 additions and 0 deletions
|
@ -68,13 +68,22 @@ launch_command (const char *command)
|
|||
}
|
||||
}
|
||||
|
||||
static const char *
|
||||
cc_bluetooth_panel_get_help_uri (CcPanel *panel)
|
||||
{
|
||||
return "help:gnome-help/bluetooth";
|
||||
}
|
||||
|
||||
static void
|
||||
cc_bluetooth_panel_class_init (CcBluetoothPanelClass *klass)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
CcPanelClass *panel_class = CC_PANEL_CLASS (klass);
|
||||
|
||||
object_class->finalize = cc_bluetooth_panel_finalize;
|
||||
|
||||
panel_class->get_help_uri = cc_bluetooth_panel_get_help_uri;
|
||||
|
||||
g_type_class_add_private (klass, sizeof (CcBluetoothPanelPrivate));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue