mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-03 22:33:08 +02:00
GUnixVolume: implement _finish functions
The _finish functions for GUnixVolume _mount and _eject functions were never implemented, having been simply stubbed out as 'return TRUE;'. Implement them. https://bugzilla.gnome.org/show_bug.cgi?id=724916
This commit is contained in:
parent
62fa9c578f
commit
ffe4e94e3a
@ -343,7 +343,9 @@ g_unix_volume_mount_finish (GVolume *volume,
|
||||
GAsyncResult *result,
|
||||
GError **error)
|
||||
{
|
||||
return TRUE;
|
||||
g_return_val_if_fail (g_task_is_valid (result, volume), FALSE);
|
||||
|
||||
return g_task_propagate_boolean (G_TASK (result), error);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -366,7 +368,9 @@ g_unix_volume_eject_finish (GVolume *volume,
|
||||
GAsyncResult *result,
|
||||
GError **error)
|
||||
{
|
||||
return TRUE;
|
||||
g_return_val_if_fail (g_task_is_valid (result, volume), FALSE);
|
||||
|
||||
return g_task_propagate_boolean (G_TASK (result), error);
|
||||
}
|
||||
|
||||
static gchar *
|
||||
|
Loading…
x
Reference in New Issue
Block a user