audio-settings: Fix unneeded async for GetProperties

GetProperties method call for Audio settings returns the reply in the
same iteraction, it doesn't need to be asynchronous.
This commit is contained in:
Claudio Takahasi 2013-02-25 10:48:39 -03:00 committed by Denis Kenzior
parent 7b0b28bb41
commit 82fae93ca1
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ static DBusMessage *audio_get_properties(DBusConnection *conn,
}
static const GDBusMethodTable audio_methods[] = {
{ GDBUS_ASYNC_METHOD("GetProperties",
{ GDBUS_METHOD("GetProperties",
NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
audio_get_properties) },
{ }