summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAki Niemi <aki.niemi@nokia.com>2010-10-11 15:56:15 +0300
committerAki Niemi <aki.niemi@nokia.com>2010-10-11 16:00:54 +0300
commit9914b2059e4eb0d5e7378ddfbcdd25ea02c74483 (patch)
treef25b10aa048abab5e65cf1f4d739a8bbf3f7fc6b
parent59e52c8d147e9b541ab870a5be79b48e2ee5cdb5 (diff)
downloadofono-9914b2059e4eb0d5e7378ddfbcdd25ea02c74483.tar.bz2
Fix smart messaging D-Bus signatures
-rw-r--r--plugins/smart-messaging.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/smart-messaging.c b/plugins/smart-messaging.c
index 3ae07b7e..fbb323b6 100644
--- a/plugins/smart-messaging.c
+++ b/plugins/smart-messaging.c
@@ -70,11 +70,11 @@ static DBusMessage *smart_messaging_send_vcal(DBusConnection *conn,
}
static GDBusMethodTable smart_messaging_methods[] = {
- { "RegisterAgent", "o", "", smart_messaging_register_agent },
- { "UnregisterAgent", "o", "", smart_messaging_unregister_agent },
- { "SendBusinessCard", "ab", "o", smart_messaging_send_vcard,
+ { "RegisterAgent", "o", "", smart_messaging_register_agent },
+ { "UnregisterAgent", "o", "", smart_messaging_unregister_agent },
+ { "SendBusinessCard", "say", "o", smart_messaging_send_vcard,
G_DBUS_METHOD_FLAG_ASYNC },
- { "SendAppointment", "ab", "o", smart_messaging_send_vcal,
+ { "SendAppointment", "say", "o", smart_messaging_send_vcal,
G_DBUS_METHOD_FLAG_ASYNC },
{ }
};