ethumb: better naming for signal arguments
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Tue, 18 Dec 2012 21:35:33 +0000 (21:35 +0000)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Tue, 18 Dec 2012 21:35:33 +0000 (21:35 +0000)
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

index dc917bc..cebde0f 100644 (file)
@@ -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" }) },
   { }
 };