diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-09 13:07:29 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:15:02 +0100 |
commit | b61c94016afe8a598f3b7f576430f790c6898a4f (patch) | |
tree | 39b72a452ac975db2504ef196085be5357cd791a /cli/mmcli-modem-messaging.c | |
parent | 8a4a7ca4dcd7d92d964733c5c30865354a7a6f82 (diff) |
api,dbus: remove the option to send the SMS in the Create() call
An SMS must be first created with the Messaging interface, and then sent using the
Send() method from the SMS-specific interface.
Diffstat (limited to 'cli/mmcli-modem-messaging.c')
-rw-r--r-- | cli/mmcli-modem-messaging.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/mmcli-modem-messaging.c b/cli/mmcli-modem-messaging.c index c2156db9..b8052e07 100644 --- a/cli/mmcli-modem-messaging.c +++ b/cli/mmcli-modem-messaging.c @@ -272,7 +272,6 @@ get_modem_ready (GObject *source, g_debug ("Asynchronously creating new SMS in modem..."); mm_modem_messaging_create (ctx->modem_messaging, properties, - FALSE, /* never send it here */ ctx->cancellable, (GAsyncReadyCallback)create_ready, NULL); @@ -349,7 +348,6 @@ mmcli_modem_messaging_run_synchronous (GDBusConnection *connection) g_debug ("Synchronously creating new SMS in modem..."); sms = mm_modem_messaging_create_sync (ctx->modem_messaging, properties, - FALSE, /* never send it here */ NULL, &error); g_object_unref (properties); |