[Xfce4-commits] r29849 - in thunar/branches/migration-to-gio: . thunar
Jannis Pohlmann
jannis at xfce.org
Sun Apr 19 22:45:16 CEST 2009
Author: jannis
Date: 2009-04-19 20:45:15 +0000 (Sun, 19 Apr 2009)
New Revision: 29849
Modified:
thunar/branches/migration-to-gio/ChangeLog
thunar/branches/migration-to-gio/thunar/thunar-clipboard-manager.c
thunar/branches/migration-to-gio/thunar/thunar-location-button.c
Log:
* thunar/thunar-location-button.c: Use g_file_list_to_string() instead
of thunar_vfs_path_list_to_string() in
thunar_location_button_drag_data_get().
Modified: thunar/branches/migration-to-gio/ChangeLog
===================================================================
--- thunar/branches/migration-to-gio/ChangeLog 2009-04-18 23:20:59 UTC (rev 29848)
+++ thunar/branches/migration-to-gio/ChangeLog 2009-04-19 20:45:15 UTC (rev 29849)
@@ -1,3 +1,9 @@
+2009-04-19 Jannis Pohlmann <jannis at xfce.org>
+
+ * thunar/thunar-location-button.c: Use g_file_list_to_string() instead
+ of thunar_vfs_path_list_to_string() in
+ thunar_location_button_drag_data_get().
+
2009-04-17 Jannis Pohlmann <jannis at xfce.org>
* thunar/thunar-clipboard-manager.c: Remove GTK+ 2.6 check.
Modified: thunar/branches/migration-to-gio/thunar/thunar-clipboard-manager.c
===================================================================
--- thunar/branches/migration-to-gio/thunar/thunar-clipboard-manager.c 2009-04-18 23:20:59 UTC (rev 29848)
+++ thunar/branches/migration-to-gio/thunar/thunar-clipboard-manager.c 2009-04-19 20:45:15 UTC (rev 29849)
@@ -1,6 +1,7 @@
/* $Id$ */
/*-
* Copyright (c) 2005-2006 Benedikt Meurer <benny at xfce.org>
+ * Copyright (c) 2009 Jannis Pohlmann <jannis at xfce.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
Modified: thunar/branches/migration-to-gio/thunar/thunar-location-button.c
===================================================================
--- thunar/branches/migration-to-gio/thunar/thunar-location-button.c 2009-04-18 23:20:59 UTC (rev 29848)
+++ thunar/branches/migration-to-gio/thunar/thunar-location-button.c 2009-04-19 20:45:15 UTC (rev 29849)
@@ -667,8 +667,8 @@
if (G_LIKELY (location_button->file != NULL))
{
/* transform the path into an uri list string */
- path_list.data = thunar_file_get_path (location_button->file); path_list.next = path_list.prev = NULL;
- uri_string = thunar_vfs_path_list_to_string (&path_list);
+ path_list.data = thunar_file_get_file (location_button->file); path_list.next = path_list.prev = NULL;
+ uri_string = g_file_list_to_string (&path_list);
/* set the uri list for the drag selection */
gtk_selection_data_set (selection_data, selection_data->target, 8, (guchar *) uri_string, strlen (uri_string));
More information about the Xfce4-commits
mailing list