*** empty log message ***

This commit is contained in:
Matthias Clasen 2004-11-15 16:22:49 +00:00
parent 650de3db38
commit 5c93ee5d5c
7 changed files with 32 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-11-15 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreemodel.c (gtk_tree_path_prev): Return FALSE if
depth is 0 (noticed by Tim Janik)
2004-11-15 Erwann Chenede - <erwann.chenede@sun.com>
* gtk/gtkfilesel.c: fix unselect in multiple selection (#156805)

View File

@ -1,3 +1,8 @@
2004-11-15 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreemodel.c (gtk_tree_path_prev): Return FALSE if
depth is 0 (noticed by Tim Janik)
2004-11-15 Erwann Chenede - <erwann.chenede@sun.com>
* gtk/gtkfilesel.c: fix unselect in multiple selection (#156805)

View File

@ -1,3 +1,8 @@
2004-11-15 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreemodel.c (gtk_tree_path_prev): Return FALSE if
depth is 0 (noticed by Tim Janik)
2004-11-15 Erwann Chenede - <erwann.chenede@sun.com>
* gtk/gtkfilesel.c: fix unselect in multiple selection (#156805)

View File

@ -1,3 +1,8 @@
2004-11-15 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreemodel.c (gtk_tree_path_prev): Return FALSE if
depth is 0 (noticed by Tim Janik)
2004-11-15 Erwann Chenede - <erwann.chenede@sun.com>
* gtk/gtkfilesel.c: fix unselect in multiple selection (#156805)

View File

@ -1,3 +1,9 @@
2004-11-15 Matthias Clasen <mclasen@redhat.com>
* queryloaders.c (query_module): Set vtable->module before
calling fill_vtable(), since gdk-pixbuf-io.c does does the
same and modules may rely on it. (#158177, Dan Winship)
2004-11-12 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf-io.c (gdk_pixbuf_io_init): Don't use

View File

@ -181,7 +181,9 @@ query_module (const char *dir, const char *file)
#endif
info = g_new0 (GdkPixbufFormat, 1);
vtable = g_new0 (GdkPixbufModule, 1);
vtable->module = module;
(*fill_info) (info);
(*fill_vtable) (vtable);

View File

@ -734,6 +734,9 @@ gtk_tree_path_prev (GtkTreePath *path)
{
g_return_val_if_fail (path != NULL, FALSE);
if (path->depth == 0)
return FALSE;
if (path->indices[path->depth - 1] == 0)
return FALSE;