Free the data of the row before overwriting it. (#307490, Kjartan Maraas)
2005-06-13 Matthias Clasen <mclasen@redhat.com> * gtk/gtkfilechooserbutton.c (model_update_current_folder): Free the data of the row before overwriting it. (#307490, Kjartan Maraas)
This commit is contained in:

committed by
Matthias Clasen

parent
58b9aed17a
commit
ae1e9866d0
@ -1,3 +1,9 @@
|
|||||||
|
2005-06-13 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkfilechooserbutton.c (model_update_current_folder):
|
||||||
|
Free the data of the row before overwriting it. (#307490,
|
||||||
|
Kjartan Maraas)
|
||||||
|
|
||||||
2005-06-13 Kjartan Maraas <kmaraas@gnome.org>
|
2005-06-13 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
* gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
|
* gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2005-06-13 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkfilechooserbutton.c (model_update_current_folder):
|
||||||
|
Free the data of the row before overwriting it. (#307490,
|
||||||
|
Kjartan Maraas)
|
||||||
|
|
||||||
2005-06-13 Kjartan Maraas <kmaraas@gnome.org>
|
2005-06-13 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
* gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
|
* gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2005-06-13 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkfilechooserbutton.c (model_update_current_folder):
|
||||||
|
Free the data of the row before overwriting it. (#307490,
|
||||||
|
Kjartan Maraas)
|
||||||
|
|
||||||
2005-06-13 Kjartan Maraas <kmaraas@gnome.org>
|
2005-06-13 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
* gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
|
* gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
|
||||||
|
@ -1477,7 +1477,10 @@ model_update_current_folder (GtkFileChooserButton *button,
|
|||||||
button->priv->has_current_folder = TRUE;
|
button->priv->has_current_folder = TRUE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
gtk_tree_model_iter_nth_child (button->priv->model, &iter, NULL, pos);
|
gtk_tree_model_iter_nth_child (button->priv->model, &iter, NULL, pos);
|
||||||
|
model_free_row_data (button, &iter);
|
||||||
|
}
|
||||||
|
|
||||||
pixbuf = gtk_file_system_render_icon (button->priv->fs, path,
|
pixbuf = gtk_file_system_render_icon (button->priv->fs, path,
|
||||||
GTK_WIDGET (button),
|
GTK_WIDGET (button),
|
||||||
|
Reference in New Issue
Block a user