[nautilus/wip/corey/dnd_features: 2/7] window: Fix mistyped argument




commit 7823c787872006bb408469277f448a175f9533e5
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]