diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2018-06-14 12:19:26 +0200 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2018-10-16 17:09:21 +0000 |
commit | 60d42de68e3a359d2eb0af3d3ca01ca48f3c53c6 (patch) | |
tree | d1fafccb57f7f5e64076647829d9f0d16a0ddea5 /src/mm-base-call.h | |
parent | 9503af95e2d22b828c3dcf89c1d63e3dd823cbc2 (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-base-call.h')
-rw-r--r-- | src/mm-base-call.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mm-base-call.h b/src/mm-base-call.h index b6bf8082..938e4581 100644 --- a/src/mm-base-call.h +++ b/src/mm-base-call.h @@ -79,14 +79,6 @@ struct _MMBaseCallClass { gboolean (* send_dtmf_finish) (MMBaseCall *self, GAsyncResult *res, GError **error); - - /* Delete the call */ - void (* delete) (MMBaseCall *self, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* delete_finish) (MMBaseCall *self, - GAsyncResult *res, - GError **error); }; GType mm_base_call_get_type (void); @@ -106,11 +98,4 @@ void mm_base_call_change_state (MMBaseCall *self, void mm_base_call_received_dtmf (MMBaseCall *self, const gchar *dtmf); -void mm_base_call_delete (MMBaseCall *self, - GAsyncReadyCallback callback, - gpointer user_data); -gboolean mm_base_call_delete_finish (MMBaseCall *self, - GAsyncResult *res, - GError **error); - #endif /* MM_BASE_CALL_H */ |