mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2025-12-31 00:50:12 +01:00
Make GetProperties async
as the rest of our functions.
This commit is contained in:
parent
924e08d2e8
commit
ea4114b976
2 changed files with 4 additions and 6 deletions
|
|
@ -55,7 +55,6 @@ static void fprint_device_delete_enrolled_fingers(FprintDevice *rdev,
|
|||
const char *username,
|
||||
DBusGMethodInvocation *context);
|
||||
static void fprint_device_get_properties (FprintDevice *rdev,
|
||||
GHashTable **props,
|
||||
DBusGMethodInvocation *context);
|
||||
|
||||
#include "device-dbus-glue.h"
|
||||
|
|
@ -1037,10 +1036,8 @@ static void fprint_device_delete_enrolled_fingers(FprintDevice *rdev,
|
|||
dbus_g_method_return(context);
|
||||
}
|
||||
|
||||
static void
|
||||
fprint_device_get_properties (FprintDevice *rdev,
|
||||
GHashTable **props,
|
||||
DBusGMethodInvocation *context)
|
||||
static void fprint_device_get_properties (FprintDevice *rdev,
|
||||
DBusGMethodInvocation *context)
|
||||
{
|
||||
FprintDevicePrivate *priv = DEVICE_GET_PRIVATE(rdev);
|
||||
GHashTable *table;
|
||||
|
|
@ -1053,6 +1050,6 @@ fprint_device_get_properties (FprintDevice *rdev,
|
|||
driver_name = fp_driver_get_full_name (driver);
|
||||
g_hash_table_insert (table, "Name", g_strdup (driver_name));
|
||||
|
||||
*props = table;
|
||||
dbus_g_method_return (context, table);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@
|
|||
|
||||
<method name="GetProperties">
|
||||
<arg type="a{ss}" name="properties" direction="out" />
|
||||
<annotation name="org.freedesktop.DBus.GLib.Async" value="" />
|
||||
</method>
|
||||
|
||||
</interface>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue