start service by name requires one more parameter (flags).

The dbus api has a "flags" parameter that is now unused but may be in
future, it was missing and dbus was giving method mismatch.

I forgot to commit this but changed Ethumb_Client, then Viktor "fixed"
it by reverting such change. Now going back to my code and adding "0"
as flag.



SVN revision: 40968
This commit is contained in:
Gustavo Sverzut Barbieri 2009-06-08 14:32:17 +00:00
parent e5ca756ffe
commit b7d1bed838
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ _ethumb_client_start_server(Ethumb_Client *client)
client->server_started = 0;
client->pending_start_service_by_name = e_dbus_start_service_by_name
(client->conn, _ethumb_dbus_bus_name, _ethumb_client_start_server_cb,
(client->conn, _ethumb_dbus_bus_name, 0, _ethumb_client_start_server_cb,
client);
if (!client->pending_start_service_by_name)
{