diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-08-14 21:38:18 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-08-14 21:38:18 +0000 |
commit | 598b05575db130b24b037b04820b3dc7c1cdf586 (patch) | |
tree | 1a9e946335ade0fb228a4f26e79ba55ee653ef95 /x11-toolkits/gtk30/files | |
parent | bfc266a17fa2a4b4f4854f49117161dda7002c01 (diff) |
Notes
Diffstat (limited to 'x11-toolkits/gtk30/files')
-rw-r--r-- | x11-toolkits/gtk30/files/patch-al | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/x11-toolkits/gtk30/files/patch-al b/x11-toolkits/gtk30/files/patch-al deleted file mode 100644 index 65c0564fc6e4..000000000000 --- a/x11-toolkits/gtk30/files/patch-al +++ /dev/null @@ -1,69 +0,0 @@ ---- gtk/gtkfilechooserdefault.c.orig 2004-08-13 21:01:49.000000000 +0300 -+++ gtk/gtkfilechooserdefault.c 2004-08-14 20:11:58.000000000 +0300 -@@ -1832,7 +1832,6 @@ - - struct selection_check_closure { - GtkFileChooserDefault *impl; -- gboolean empty; - gboolean all_files; - gboolean all_folders; - }; -@@ -1850,7 +1849,6 @@ - gboolean is_folder; - - closure = data; -- closure->empty = FALSE; - - gtk_tree_model_sort_convert_iter_to_child_iter (closure->impl->sort_model, &child_iter, iter); - -@@ -1864,23 +1862,23 @@ - /* Checks whether the selected items in the file list are all files or all folders */ - static void - selection_check (GtkFileChooserDefault *impl, -- gboolean *empty, -+ int *num_selected, - gboolean *all_files, - gboolean *all_folders) - { - struct selection_check_closure closure; - GtkTreeSelection *selection; -+ int selected_rows; - - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view)); - -+ selected_rows = gtk_tree_selection_count_selected_rows (selection); -+ - if (impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER - || impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER) - { -- if (gtk_tree_selection_count_selected_rows (selection) == 0) -- closure.empty = TRUE; -- else -+ if (selected_rows > 0) - { -- closure.empty = FALSE; - closure.all_files = FALSE; - closure.all_folders = TRUE; - } -@@ -1891,7 +1889,6 @@ - || impl->action == GTK_FILE_CHOOSER_ACTION_SAVE); - - closure.impl = impl; -- closure.empty = TRUE; - closure.all_files = TRUE; - closure.all_folders = TRUE; - -@@ -1900,10 +1897,10 @@ - &closure); - } - -- g_assert (closure.empty || !(closure.all_files && closure.all_folders)); -+ g_assert (selected_rows == 0 || !(closure.all_files && closure.all_folders)); - -- if (empty) -- *empty = closure.empty; -+ if (num_selected) -+ *num_selected = selected_rows; - - if (all_files) - *all_files = closure.all_files; |