From f0538fe576ea9fab53cdaa41dc9cbd34c5322da2 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Tue, 18 Dec 2012 21:35:33 +0000 Subject: [PATCH] ethumb: better naming for signal arguments having the same argument names in a D-Bus signal/method is the equivalent in C to have a function with this signature: int my_func(int a, int a, int a, int a); Don't. SVN revision: 81309 --- legacy/ethumb/src/bin/ethumbd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/legacy/ethumb/src/bin/ethumbd.c b/legacy/ethumb/src/bin/ethumbd.c index dc917bc6f6..cebde0f4bb 100644 --- a/legacy/ethumb/src/bin/ethumbd.c +++ b/legacy/ethumb/src/bin/ethumbd.c @@ -228,7 +228,8 @@ enum static const EDBus_Signal _ethumb_dbus_objects_signals[] = { [ETHUMB_DBUS_OBJECTS_SIGNAL_GENERATED] = { "generated", - EDBUS_ARGS({"i", ""}, {"ay", "array"}, {"ay", "array"}, {"b", "bool"}) }, + EDBUS_ARGS({ "i", "id" }, { "ay", "paths" }, { "ay", "keys" }, + { "b", "success" }) }, { } };