mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
Removed an unnecessary line that was setting a field of a struct that was
* src/nautilus-view-frame.c: (check_if_view_is_gone): Removed an unnecessary line that was setting a field of a struct that was just set to NULL. This crashed for terral (IRC name).
This commit is contained in:
parent
5a670c429a
commit
2431e7f957
2 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2000-09-28 John Sullivan <sullivan@eazel.com>
|
||||
|
||||
* src/nautilus-view-frame.c: (check_if_view_is_gone):
|
||||
Removed an unnecessary line that was setting a field
|
||||
of a struct that was just set to NULL. This crashed for
|
||||
terral (IRC name).
|
||||
|
||||
2000-09-28 Josh Barrow <linuxfan@ionet.net>
|
||||
|
||||
* docs/smoketests.html:
|
||||
|
|
|
@ -449,9 +449,13 @@ check_if_view_is_gone (gpointer data)
|
|||
/* FIXME bugzilla.eazel.com 1840: Is a destroy really sufficient here? Who does the unref?
|
||||
* See bug 1840 for one bad case this destroy is involved in.
|
||||
*/
|
||||
/* view->details->check_if_view_is_gone_timeout_id used to be
|
||||
* set to zero here, but that's not necessary with the destroy.
|
||||
* If we change the destroy to something else later we might want
|
||||
* to bring that line back.
|
||||
*/
|
||||
gtk_object_destroy (GTK_OBJECT (view));
|
||||
|
||||
view->details->check_if_view_is_gone_timeout_id = 0;
|
||||
ok = FALSE;
|
||||
}
|
||||
CORBA_exception_free (&ev);
|
||||
|
|
Loading…
Reference in a new issue