[nautilus/wip/corey/dnd_features: 69/80] window: Fix mistyped argument
- From: António Fernandes <antoniof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/wip/corey/dnd_features: 69/80] window: Fix mistyped argument
- Date: Thu, 1 Sep 2022 21:42:44 +0000 (UTC)
commit 2f0b87ffd3fe77f6f9d66f0222c34b04b47cdf87
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]