diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-01-24 13:10:37 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:57 +0100 |
commit | 2bf40184e058fed71fe4d5815964a433271895ca (patch) | |
tree | de3dd9ad7d6e092cf00efb91b8450af4d652e003 /src/mm-iface-modem-3gpp-ussd.c | |
parent | 7210e6caf1cc54b43aff9b7d4e62489ab8188799 (diff) |
iface-modem-3gpp-ussd: allow error reporting in encode/decode
Diffstat (limited to 'src/mm-iface-modem-3gpp-ussd.c')
-rw-r--r-- | src/mm-iface-modem-3gpp-ussd.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mm-iface-modem-3gpp-ussd.c b/src/mm-iface-modem-3gpp-ussd.c index 75907369..9cdc2da9 100644 --- a/src/mm-iface-modem-3gpp-ussd.c +++ b/src/mm-iface-modem-3gpp-ussd.c @@ -236,16 +236,18 @@ handle_initiate (MmGdbusModem3gppUssd *skeleton, gchar * mm_iface_modem_3gpp_ussd_encode (MMIfaceModem3gppUssd *self, const gchar *command, - guint *scheme) + guint *scheme, + GError **error) { - return MM_IFACE_MODEM_3GPP_USSD_GET_INTERFACE (self)->encode (self, command, scheme); + return MM_IFACE_MODEM_3GPP_USSD_GET_INTERFACE (self)->encode (self, command, scheme, error); } gchar * mm_iface_modem_3gpp_ussd_decode (MMIfaceModem3gppUssd *self, - const gchar *reply) + const gchar *reply, + GError **error) { - return MM_IFACE_MODEM_3GPP_USSD_GET_INTERFACE (self)->decode (self, reply); + return MM_IFACE_MODEM_3GPP_USSD_GET_INTERFACE (self)->decode (self, reply, error); } /*****************************************************************************/ |