diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-01 11:11:28 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-16 14:53:19 +0100 |
commit | ef9fb0bfacac348c5bab35a3a99d52270e510d99 (patch) | |
tree | 770ed4088a84a885b53412bd4b970371b7e2f394 /src/mm-iface-modem-messaging.c | |
parent | 3ccc78e8588acec9632863d30e310cdc76ad8598 (diff) |
libmm-common: `MMSmsProperties' won't be considered internal any more
Renamed `MMCommonSmsProperties' to `MMSmsProperties', and removed the
`MMSmsProperties' provided in libmm-glib. We'll just use the original one
from libmm-common always.
Diffstat (limited to 'src/mm-iface-modem-messaging.c')
-rw-r--r-- | src/mm-iface-modem-messaging.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-iface-modem-messaging.c b/src/mm-iface-modem-messaging.c index d450d61e..6a30bd60 100644 --- a/src/mm-iface-modem-messaging.c +++ b/src/mm-iface-modem-messaging.c @@ -204,7 +204,7 @@ handle_create_auth_ready (MMBaseModem *self, MMModemState modem_state = MM_MODEM_STATE_UNKNOWN; MMSmsList *list = NULL; GError *error = NULL; - MMCommonSmsProperties *properties; + MMSmsProperties *properties; MMSms *sms; if (!mm_base_modem_authorize_finish (self, res, &error)) { @@ -227,7 +227,7 @@ handle_create_auth_ready (MMBaseModem *self, } /* Parse input properties */ - properties = mm_common_sms_properties_new_from_dictionary (ctx->dictionary, &error); + properties = mm_sms_properties_new_from_dictionary (ctx->dictionary, &error); if (!properties) { g_dbus_method_invocation_take_error (ctx->invocation, error); handle_create_context_free (ctx); |