Skip to content
Snippets Groups Projects
Commit 1b7d9ab6 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#2176] Fix calltree call description state and state code in conferences

parent 817aceee
Branches
Tags
No related merge requests found
...@@ -691,9 +691,11 @@ void calltree_add_call (calltab_t* tab, callable_obj_t * c, GtkTreeIter *parent) ...@@ -691,9 +691,11 @@ void calltree_add_call (calltab_t* tab, callable_obj_t * c, GtkTreeIter *parent)
gchar * description; gchar * description;
gchar * date=""; gchar * date="";
gchar *duration=""; gchar *duration="";
description = g_markup_printf_escaped("<b>%s</b> <i>%s</i>", description = g_markup_printf_escaped("<b>%s</b> <i>%s</i>\n<i>%s (%d)</i>",
c->_peer_number, c->_peer_number,
c->_peer_name); c->_peer_name,
c->_state_code_description,
c->_state_code);
gtk_tree_store_prepend (tab->store, &iter, parent); gtk_tree_store_prepend (tab->store, &iter, parent);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment