summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2012-07-03 21:28:11 +0300
committerJohan Hedberg <johan.hedberg@intel.com>2012-07-18 15:12:36 +0300
commit45fb4ec27e98883d0c083c0dd42db02ac06397be (patch)
treed240b55210d9158f94737e352349944f50a663ba
parent9decbe87faf9d0c6d374e64e64a14e382ac07bae (diff)
downloadobexd-45fb4ec27e98883d0c083c0dd42db02ac06397be.tar.gz
client: Use filter instead of dummy as argument name in MAP
This is aligned with the documentation that uses filter as well.
-rw-r--r--client/map.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map.c b/client/map.c
index 2c52095..4137dbe 100644
--- a/client/map.c
+++ b/client/map.c
@@ -597,11 +597,11 @@ static const GDBusMethodTable map_methods[] = {
GDBUS_ARGS({ "name", "s" }), NULL,
map_setpath) },
{ GDBUS_ASYNC_METHOD("GetFolderListing",
- GDBUS_ARGS({ "dummy", "a{ss}" }),
+ GDBUS_ARGS({ "filter", "a{ss}" }),
GDBUS_ARGS({ "content", "aa{sv}" }),
map_get_folder_listing) },
{ GDBUS_ASYNC_METHOD("GetMessageListing",
- GDBUS_ARGS({ "folder", "s" }, { "dummy", "a{ss}" }),
+ GDBUS_ARGS({ "folder", "s" }, { "filter", "a{ss}" }),
GDBUS_ARGS({ "messages", "a{oa{sv}}" }),
map_get_message_listing) },
{ }