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
This commit is contained in:
Lucas De Marchi 2012-12-18 21:35:33 +00:00
parent bd978c7f33
commit f0538fe576
1 changed files with 2 additions and 1 deletions

View 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" }) },
{ }
};