Skip to content
Snippets Groups Projects
Commit 6fd38dfb authored by Tristan Matthews's avatar Tristan Matthews
Browse files

gnome: cleanup

Refs #45628
parent a5374592
Branches
Tags
No related merge requests found
...@@ -2060,7 +2060,7 @@ dbus_get_conference_list(void) ...@@ -2060,7 +2060,7 @@ dbus_get_conference_list(void)
} }
gchar ** gchar **
dbus_get_display_name_list(const gchar *confID) dbus_get_display_names(const gchar *confID)
{ {
GError *error = NULL; GError *error = NULL;
gchar **list = NULL; gchar **list = NULL;
......
...@@ -432,7 +432,7 @@ void dbus_add_participant(const gchar *callID, const gchar *confID); ...@@ -432,7 +432,7 @@ void dbus_add_participant(const gchar *callID, const gchar *confID);
* Return a list of display names for this conference (confID) * Return a list of display names for this conference (confID)
*/ */
gchar ** gchar **
dbus_get_display_name_list(const gchar *confID); dbus_get_display_names(const gchar *confID);
/** /**
* Return a list of participant for this conference (confID) * Return a list of participant for this conference (confID)
......
...@@ -258,9 +258,9 @@ add_handle(const gchar *id) ...@@ -258,9 +258,9 @@ add_handle(const gchar *id)
title_prefix = _("Conference with"); title_prefix = _("Conference with");
/* get all the participants name */ /* get all the participants name */
gchar **display_name_list = dbus_get_display_name_list(id); gchar **display_names = dbus_get_display_names(id);
name = g_strjoinv(", ", display_name_list); name = g_strjoinv(", ", display_names);
g_strfreev(display_name_list); g_strfreev(display_names);
} else if (call_type == IS_CALL) { /* on a simple call */ } else if (call_type == IS_CALL) { /* on a simple call */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment