#0 0x00005592953dfc28 in nautilus_list_model_get_all_iters_for_file (model=0x0, file=file@entry=0x5592976258c0) at ../src/nautilus-list-model.c:722 717: data.model = model; 718: data.iters = NULL; 719: 720: priv = nautilus_list_model_get_instance_private (model); 721: 722: dir_to_iters (&data, priv->top_reverse_map); 723: g_hash_table_foreach (priv->directory_reverse_map, 724: file_to_iter_cb, &data); 725: 726: return g_list_reverse (data.iters); 727: } #1 0x00005592953dfd20 in nautilus_list_model_get_first_iter_for_file (model=, file=file@entry=0x5592976258c0, iter=iter@entry=0x7fff82c013d0) at ../src/nautilus-list-model.c:739 734: GList *list; 735: gboolean res; 736: 737: res = FALSE; 738: 739: list = nautilus_list_model_get_all_iters_for_file (model, file); 740: if (list != NULL) 741: { 742: res = TRUE; 743: *iter = *(GtkTreeIter *) list->data; 744: } #2 0x0000559295393a39 in nautilus_list_view_scroll_to_file (file=0x5592976258c0, view=0x559296e074b0) at ../src/nautilus-list-view.c:3447 3442: NautilusFile *file) 3443: { 3444: GtkTreePath *path; 3445: GtkTreeIter iter; 3446: 3447: if (!nautilus_list_model_get_first_iter_for_file (view->details->model, file, &iter)) 3448: { 3449: return; 3450: } 3451: 3452: path = gtk_tree_model_get_path (GTK_TREE_MODEL (view->details->model), &iter); #3 list_view_scroll_to_file (view=, uri=) at ../src/nautilus-list-view.c:3474 3469: /* Only if existing, since we don't want to add the file to 3470: * the directory if it has been removed since then */ 3471: file = nautilus_file_get_existing_by_uri (uri); 3472: if (file != NULL) 3473: { 3474: nautilus_list_view_scroll_to_file (NAUTILUS_LIST_VIEW (view), file); 3475: nautilus_file_unref (file); 3476: } 3477: } 3478: } 3479: #4 0x000055929533ae75 in view_ended_loading (view=, self=0x5592970ce330) at ../src/nautilus-window-slot.c:2560 2555: priv = nautilus_window_slot_get_instance_private (self); 2556: if (view == priv->content_view) 2557: { 2558: if (NAUTILUS_IS_FILES_VIEW (view) && priv->pending_scroll_to != NULL) 2559: { 2560: nautilus_files_view_scroll_to_file (NAUTILUS_FILES_VIEW (priv->content_view), priv->pending_scroll_to); 2561: } 2562: 2563: end_location_change (self); 2564: } 2565: #5 view_is_loading_changed_cb (object=, pspec=, self=0x5592970ce330) at ../src/nautilus-window-slot.c:2594 2589: { 2590: view_started_loading (self, view); 2591: } 2592: else 2593: { 2594: view_ended_loading (self, view); 2595: } 2596: 2597: nautilus_profile_end (NULL); 2598: } 2599: #6 0x00007f794a01bf9d in g_closure_invoke (closure=0x559297257100, return_value=0x0, n_param_values=2, param_values=0x7fff82c01610, invocation_hint=0x7fff82c01590) at ../../../../gobject/gclosure.c:804 [Error: gclosure.c was not found in source tree] #7 0x00007f794a02ecde in signal_emit_unlocked_R (node=node@entry=0x559296ab9080, detail=detail@entry=2561, instance=instance@entry=0x559296e074b0, emission_return=emission_return@entry=0x0, instance_and_params=instance_and_params@entry=0x7fff82c01610) at ../../../../gobject/gsignal.c:3635 [Error: gsignal.c was not found in source tree] #8 0x00007f794a0374b5 in g_signal_emit_valist (instance=0x559296e074b0, signal_id=, detail=2561, var_args=var_args@entry=0x7fff82c017e0) at ../../../../gobject/gsignal.c:3391 [Error: gsignal.c was not found in source tree] #9 0x00007f794a037ecf in g_signal_emit (instance=instance@entry=0x559296e074b0, signal_id=, detail=) at ../../../../gobject/gsignal.c:3447 [Error: gsignal.c was not found in source tree] #10 0x00007f794a020464 in g_object_dispatch_properties_changed (object=0x559296e074b0, n_pspecs=, pspecs=) at ../../../../gobject/gobject.c:1080 [Error: gobject.c was not found in source tree] #11 0x00007f794a022839 in g_object_notify_by_spec_internal (pspec=0x55929717d1b0, object=0x559296e074b0) at ../../../../gobject/gobject.c:1173 [Error: gobject.c was not found in source tree] #12 g_object_notify (object=0x559296e074b0, property_name=property_name@entry=0x5592953f523c "is-loading") at ../../../../gobject/gobject.c:1221 [Error: gobject.c was not found in source tree] #13 0x000055929538a21d in done_loading (view=0x559296e074b0, all_files_seen=0) at ../src/nautilus-files-view.c:3614 3609: nautilus_files_view_display_selection_info (view); 3610: } 3611: 3612: priv->loading = FALSE; 3613: g_signal_emit (view, signals[END_LOADING], 0, all_files_seen); 3614: g_object_notify (G_OBJECT (view), "is-loading"); 3615: 3616: if (!priv->in_destruction) 3617: { 3618: nautilus_files_view_check_empty_states (view); 3619: } #14 0x000055929538a8fe in nautilus_files_view_stop_loading (view=0x559296e074b0) at ../src/nautilus-files-view.c:8677 8672: priv->old_changed_files = NULL; 8673: 8674: g_list_free_full (priv->pending_selection, g_object_unref); 8675: priv->pending_selection = NULL; 8676: 8677: done_loading (view, FALSE); 8678: 8679: disconnect_model_handlers (view); 8680: } 8681: 8682: gboolean #15 0x000055929538b24a in nautilus_files_view_destroy (object=0x559296e074b0) at ../src/nautilus-files-view.c:3119 3114: 3115: view = NAUTILUS_FILES_VIEW (object); 3116: priv = nautilus_files_view_get_instance_private (view); 3117: 3118: priv->in_destruction = TRUE; 3119: nautilus_files_view_stop_loading (view); 3120: 3121: if (priv->model) 3122: { 3123: nautilus_directory_unref (priv->model); 3124: priv->model = NULL; #16 0x00007f794a01beb1 in g_closure_invoke (closure=0x559296add810, return_value=0x0, n_param_values=1, param_values=0x7fff82c01b80, invocation_hint=0x7fff82c01b00) at ../../../../gobject/gclosure.c:804 [Error: gclosure.c was not found in source tree] #17 0x00007f794a02ee52 in signal_emit_unlocked_R (node=node@entry=0x559296add880, detail=detail@entry=0, instance=instance@entry=0x559296e074b0, emission_return=emission_return@entry=0x0, instance_and_params=instance_and_params@entry=0x7fff82c01b80) at ../../../../gobject/gsignal.c:3751 [Error: gsignal.c was not found in source tree] #18 0x00007f794a0374b5 in g_signal_emit_valist (instance=0x559296e074b0, signal_id=, detail=0, var_args=var_args@entry=0x7fff82c01d40) at ../../../../gobject/gsignal.c:3391 [Error: gsignal.c was not found in source tree] #19 0x00007f794a037ecf in g_signal_emit (instance=instance@entry=0x559296e074b0, signal_id=, detail=detail@entry=0) at ../../../../gobject/gsignal.c:3447 [Error: gsignal.c was not found in source tree] #20 0x00007f794ba5561c in gtk_widget_dispose (object=0x559296e074b0) at ../../../../gtk/gtkwidget.c:12079 [Error: gtkwidget.c was not found in source tree] #21 0x00007f794a022688 in g_object_run_dispose (object=0x559296e074b0) at ../../../../gobject/gobject.c:1100 [Error: gobject.c was not found in source tree] #22 0x00007f794ba4cf69 in gtk_widget_destroy (widget=) at ../../../../gtk/gtkwidget.c:4722 [Error: gtkwidget.c was not found in source tree] #23 0x0000559295339a41 in nautilus_window_slot_dispose (object=0x5592970ce330) at ../src/nautilus-window-slot.c:2796 2791: g_signal_handlers_disconnect_by_data (nautilus_trash_monitor_get (), self); 2792: 2793: if (priv->content_view) 2794: { 2795: widget = GTK_WIDGET (priv->content_view); 2796: gtk_widget_destroy (widget); 2797: g_object_unref (priv->content_view); 2798: priv->content_view = NULL; 2799: } 2800: 2801: if (priv->new_content_view) #24 0x00007f794a020e43 in g_object_unref (_object=0x5592970ce330) at ../../../../gobject/gobject.c:3293 [Error: gobject.c was not found in source tree] #25 0x00007f794b837219 in gtk_container_remove (container=0x559296e02750, widget=0x5592970ce330) at ../../../../gtk/gtkcontainer.c:1909 [Error: gtkcontainer.c was not found in source tree] #26 0x00007f794c02611d in g_list_foreach (list=, list@entry=0x559296caae80, func=func@entry=0x55929533e920 , user_data=user_data@entry=0x559296d583d0) at ../../../../glib/glist.c:1005 [Error: glist.c was not found in source tree] #27 0x000055929533ec25 in nautilus_window_destroy (object=0x559296d583d0) at ../src/nautilus-window.c:2491 2486: { 2487: /* Make sure active slot is last one to be closed, to avoid default activation 2488: * of others slots when closing the active one, see bug #741952 */ 2489: slots_copy = g_list_sort_with_data (slots_copy, (GCompareDataFunc) sort_slots_active_last, window); 2490: } 2491: g_list_foreach (slots_copy, (GFunc) destroy_slots_foreach, window); 2492: g_list_free (slots_copy); 2493: 2494: /* the slots list should now be empty */ 2495: g_assert (priv->slots == NULL); 2496: #28 0x00007f794a01bf9d in g_closure_invoke (closure=0x559296add810, return_value=0x0, n_param_values=1, param_values=0x7fff82c020e0, invocation_hint=0x7fff82c02060) at ../../../../gobject/gclosure.c:804 [Error: gclosure.c was not found in source tree] #29 0x00007f794a02ee52 in signal_emit_unlocked_R (node=node@entry=0x559296add880, detail=detail@entry=0, instance=instance@entry=0x559296d583d0, emission_return=emission_return@entry=0x0, instance_and_params=instance_and_params@entry=0x7fff82c020e0) at ../../../../gobject/gsignal.c:3751 [Error: gsignal.c was not found in source tree] #30 0x00007f794a0374b5 in g_signal_emit_valist (instance=0x559296d583d0, signal_id=, detail=0, var_args=var_args@entry=0x7fff82c022a0) at ../../../../gobject/gsignal.c:3391 [Error: gsignal.c was not found in source tree] #31 0x00007f794a037ecf in g_signal_emit (instance=instance@entry=0x559296d583d0, signal_id=, detail=detail@entry=0) at ../../../../gobject/gsignal.c:3447 [Error: gsignal.c was not found in source tree] #32 0x00007f794ba5561c in gtk_widget_dispose (object=0x559296d583d0) at ../../../../gtk/gtkwidget.c:12079 [Error: gtkwidget.c was not found in source tree] #33 0x00007f794ba694f8 in gtk_window_dispose (object=0x559296d583d0) at ../../../../gtk/gtkwindow.c:3155 [Error: gtkwindow.c was not found in source tree] #34 0x00007f794b7e01db in gtk_application_window_dispose (object=0x559296d583d0) at ../../../../gtk/gtkapplicationwindow.c:804 [Error: gtkapplicationwindow.c was not found in source tree] #35 0x00007f794a022688 in g_object_run_dispose (object=0x559296d583d0) at ../../../../gobject/gobject.c:1100 [Error: gobject.c was not found in source tree] #36 0x000055929533ffdc in nautilus_window_delete_event (widget=0x559296d583d0, event=) at ../src/nautilus-window.c:2793 2788: 2789: static gboolean 2790: nautilus_window_delete_event (GtkWidget *widget, 2791: GdkEventAny *event) 2792: { 2793: nautilus_window_close (NAUTILUS_WINDOW (widget)); 2794: return FALSE; 2795: } 2796: 2797: static gboolean 2798: nautilus_window_button_press_event (GtkWidget *widget, #37 0x00007f794b901637 in _gtk_marshal_BOOLEAN__BOXEDv (closure=0x559296b46fc0, return_value=0x7fff82c025a0, instance=, args=, marshal_data=, n_params=, param_types=0x559296b47010) at ../../../../gtk/gtkmarshalers.c:128 [Error: gtkmarshalers.c was not found in source tree] #38 0x00007f794a01c1d6 in _g_closure_invoke_va (closure=0x559296b46fc0, return_value=0x7fff82c025a0, instance=0x559296d583d0, args=0x7fff82c02670, n_params=1, param_types=0x559296b47010) at ../../../../gobject/gclosure.c:867 [Error: gclosure.c was not found in source tree] #39 0x00007f794a03716d in g_signal_emit_valist (instance=0x559296d583d0, signal_id=, detail=, var_args=var_args@entry=0x7fff82c02670) at ../../../../gobject/gsignal.c:3300 [Error: gsignal.c was not found in source tree] #40 0x00007f794a037ecf in g_signal_emit (instance=instance@entry=0x559296d583d0, signal_id=, detail=detail@entry=0) at ../../../../gobject/gsignal.c:3447 [Error: gsignal.c was not found in source tree] #41 0x00007f794ba4c484 in gtk_widget_event_internal (widget=widget@entry=0x559296d583d0, event=event@entry=0x55929719ac00) at ../../../../gtk/gtkwidget.c:7732 [Error: gtkwidget.c was not found in source tree] #42 0x00007f794ba4e5ba in gtk_widget_event (widget=widget@entry=0x559296d583d0, event=event@entry=0x55929719ac00) at ../../../../gtk/gtkwidget.c:7302 [Error: gtkwidget.c was not found in source tree] #43 0x00007f794b900696 in gtk_main_do_event (event=event@entry=0x55929719ac00) at ../../../../gtk/gtkmain.c:1813 [Error: gtkmain.c was not found in source tree] #44 0x00007f794ba62f31 in send_delete_event (data=0x559296d583d0) at ../../../../gtk/gtkwindow.c:1324 [Error: gtkwindow.c was not found in source tree] #45 0x00007f794b3f3090 in gdk_threads_dispatch (data=0x559296cc18e0) at ../../../../gdk/gdk.c:743 [Error: gdk.c was not found in source tree] #46 0x00007f794c029e25 in g_main_dispatch (context=0x559296ad6d50) at ../../../../glib/gmain.c:3148 [Error: gmain.c was not found in source tree] #47 g_main_context_dispatch (context=context@entry=0x559296ad6d50) at ../../../../glib/gmain.c:3813 [Error: gmain.c was not found in source tree] #48 0x00007f794c02a1f0 in g_main_context_iterate (context=context@entry=0x559296ad6d50, block=block@entry=1, dispatch=dispatch@entry=1, self=) at ../../../../glib/gmain.c:3886 [Error: gmain.c was not found in source tree] #49 0x00007f794c02a27c in g_main_context_iteration (context=context@entry=0x559296ad6d50, may_block=may_block@entry=1) at ../../../../glib/gmain.c:3947 [Error: gmain.c was not found in source tree] #50 0x00007f794a300c4d in g_application_run (application=0x559296ac01d0, argc=, argv=) at ../../../../gio/gapplication.c:2401 [Error: gapplication.c was not found in source tree] #51 0x0000559295323f7c in main (argc=2, argv=0x7fff82c02ab8) at ../src/nautilus-main.c:102 97: if (g_getenv ("NAUTILUS_PERSIST") != NULL) 98: { 99: g_application_hold (G_APPLICATION (application)); 100: } 101: 102: retval = g_application_run (G_APPLICATION (application), 103: argc, argv); 104: 105: g_object_unref (application); 106: 107: eel_debug_shut_down ();