summaryrefslogtreecommitdiff
path: root/libcaja-private/caja-dnd.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-07-12 14:29:42 +0300
committermonsta <[email protected]>2016-07-12 14:29:42 +0300
commit867e7659adacb350b2fb5c20447affd5ef54db25 (patch)
tree5ce6b893c30067475f176ca829166bfc53135758 /libcaja-private/caja-dnd.c
parenta1a90ed979fe7a93a95742c0ca911f13b68d46b9 (diff)
downloadcaja-867e7659adacb350b2fb5c20447affd5ef54db25.tar.bz2
caja-867e7659adacb350b2fb5c20447affd5ef54db25.tar.xz
libcaja-private: drop some more unused code
Diffstat (limited to 'libcaja-private/caja-dnd.c')
-rw-r--r--libcaja-private/caja-dnd.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/libcaja-private/caja-dnd.c b/libcaja-private/caja-dnd.c
index af4c44e9..382d1764 100644
--- a/libcaja-private/caja-dnd.c
+++ b/libcaja-private/caja-dnd.c
@@ -121,19 +121,6 @@ caja_drag_destroy_selection_list (GList *list)
g_list_free (list);
}
-char **
-caja_drag_uri_array_from_selection_list (const GList *selection_list)
-{
- GList *uri_list;
- char **uris;
-
- uri_list = caja_drag_uri_list_from_selection_list (selection_list);
- uris = caja_drag_uri_array_from_list (uri_list);
- g_list_free_full (uri_list, g_free);
-
- return uris;
-}
-
GList *
caja_drag_uri_list_from_selection_list (const GList *selection_list)
{
@@ -154,28 +141,6 @@ caja_drag_uri_list_from_selection_list (const GList *selection_list)
return g_list_reverse (uri_list);
}
-char **
-caja_drag_uri_array_from_list (const GList *uri_list)
-{
- const GList *l;
- char **uris;
- int i;
-
- if (uri_list == NULL)
- {
- return NULL;
- }
-
- uris = g_new0 (char *, g_list_length ((GList *) uri_list));
- for (i = 0, l = uri_list; l != NULL; l = l->next)
- {
- uris[i++] = g_strdup ((char *) l->data);
- }
- uris[i] = NULL;
-
- return uris;
-}
-
GList *
caja_drag_uri_list_from_array (const char **uris)
{
@@ -344,17 +309,6 @@ caja_drag_items_local (const char *target_uri_string,
}
gboolean
-caja_drag_items_in_trash (const GList *selection_list)
-{
- /* check if the first item on the list is in trash.
- * FIXME:
- * we should really test each item but that would be slow for large selections
- * and currently dropped items can only be from the same container
- */
- return eel_uri_is_trash (((CajaDragSelectionItem *)selection_list->data)->uri);
-}
-
-gboolean
caja_drag_items_on_desktop (const GList *selection_list)
{
char *uri;