aboutsummaryrefslogtreecommitdiff
path: root/src/mm-call-list.h
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2018-06-14 12:19:26 +0200
committerDan Williams <dcbw@redhat.com>2018-10-16 17:09:21 +0000
commit60d42de68e3a359d2eb0af3d3ca01ca48f3c53c6 (patch)
treed1fafccb57f7f5e64076647829d9f0d16a0ddea5 /src/mm-call-list.h
parent9503af95e2d22b828c3dcf89c1d63e3dd823cbc2 (diff)
base-call: no need to delete call info from the device
Call information only lives in the ModemManager logic, there is no associated date stored within the device itself. Therefore, simplify everything by assuming there is nothing to remove. Looks like this logic was implemented because it was originally based on the SMS management logic, but for SMS we do have to remove them (the stored PDU parts) from the device.
Diffstat (limited to 'src/mm-call-list.h')
-rw-r--r--src/mm-call-list.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/mm-call-list.h b/src/mm-call-list.h
index 4a761fc8..1c668500 100644
--- a/src/mm-call-list.h
+++ b/src/mm-call-list.h
@@ -64,13 +64,9 @@ guint mm_call_list_get_count (MMCallList *self);
void mm_call_list_add_call (MMCallList *self,
MMBaseCall *call);
-void mm_call_list_delete_call (MMCallList *self,
- const gchar *call_path,
- GAsyncReadyCallback callback,
- gpointer user_data);
-gboolean mm_call_list_delete_call_finish (MMCallList *self,
- GAsyncResult *res,
- GError **error);
+gboolean mm_call_list_delete_call (MMCallList *self,
+ const gchar *call_path,
+ GError **error);
MMBaseCall *mm_call_list_get_new_incoming (MMCallList *self);
MMBaseCall *mm_call_list_get_first_ringing_call (MMCallList *self);