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

* #10736: gnome: cleanup

parent d4b64d2b
No related branches found
No related tags found
No related merge requests found
......@@ -96,8 +96,7 @@ typedef struct {
int _state_code; // The numeric state code as defined in SIP or IAX
gchar* _state_code_description; // A textual description of _state_code
gchar* _callID; // The call ID
// gchar* _confID; // The conference ID (NULL if don't participate to a conference)
gchar* _historyConfID; // Persistent conf id to be stored in history
gchar* _historyConfID; // Persistent conf id to be stored in history
gchar* _accountID; // The account the call is made with
time_t _time_start; // The timestamp the call was initiating
time_t _time_stop; // The timestamp the call was over
......
......@@ -1196,9 +1196,9 @@ handle_drop_into(GtkTreeModel *model, GtkTreeIter *source_iter, GtkTreeIter *des
} else {
// Happens when we drag a call on anther call which participate to a conference
callable_obj_t *dest_call = calllist_get_call(current_calls_tab, dest_ID);
if(dest_call) {
if (dest_call) {
gchar *conf_ID = dbus_get_conference_id(dest_call->_callID);
if(g_strcmp0(conf_ID, "") != 0) {
if (g_strcmp0(conf_ID, "") != 0) {
sflphone_add_participant(source_ID, conf_ID);
result = TRUE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment