[nautilus/wip/corey/dnd_features: 32/42] window: Fix mistyped argument
- From: Corey Berla <coreyberla src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/wip/corey/dnd_features: 32/42] window: Fix mistyped argument
- Date: Tue, 23 Aug 2022 18:48:04 +0000 (UTC)
commit 62a83c90ea7172264ba2838d031687d02f26a8a5
Author: Corey Berla <corey berla me>
Date: Thu Aug 18 09:10:09 2022 -0700
window: Fix mistyped argument
src/nautilus-window.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index f1e1e341a..eb6bec176 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -932,10 +932,10 @@ places_sidebar_drag_action_ask_cb (NautilusGtkPlacesSidebar *sidebar,
}
#endif
static GList *
-build_uri_list_from_gfile_list (GList *file_list)
+build_uri_list_from_gfile_list (GSList *file_list)
{
GList *result;
- GList *l;
+ GSList *l;
result = NULL;
@@ -955,7 +955,7 @@ build_uri_list_from_gfile_list (GList *file_list)
static void
places_sidebar_drag_perform_drop_cb (NautilusGtkPlacesSidebar *sidebar,
GFile *dest_file,
- GList *source_file_list,
+ GSList *source_file_list,
GdkDragAction action,
gpointer user_data)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]