mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-29 15:44:52 +02:00
gwin32mount.c: Fix syntax error
Signed-off-by: Colin Walters <walters@verbum.org> https://bugzilla.gnome.org/show_bug.cgi?id=683641
This commit is contained in:
parent
1a99d0eb99
commit
59ad2acfc5
@ -230,7 +230,7 @@ g_win32_mount_get_icon (GMount *mount)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
win32_mount->icon = g_themed_icon_new_with_default_fallbacks (_win32_drive_type_to_icon (win32_mount->drive_type, FALSE);
|
win32_mount->icon = g_themed_icon_new_with_default_fallbacks (_win32_drive_type_to_icon (win32_mount->drive_type, FALSE));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -247,7 +247,7 @@ g_win32_mount_get_symbolic_icon (GMount *mount)
|
|||||||
/* lazy creation */
|
/* lazy creation */
|
||||||
if (!win32_mount->symbolic_icon)
|
if (!win32_mount->symbolic_icon)
|
||||||
{
|
{
|
||||||
win32_mount->symbolic_icon = g_themed_icon_new_with_default_fallbacks (_win32_drive_type_to_icon (win32_mount->drive_type, TRUE);
|
win32_mount->symbolic_icon = g_themed_icon_new_with_default_fallbacks (_win32_drive_type_to_icon (win32_mount->drive_type, TRUE));
|
||||||
}
|
}
|
||||||
|
|
||||||
return g_object_ref (win32_mount->symbolic_icon);
|
return g_object_ref (win32_mount->symbolic_icon);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user