Append mnemonics rather than prepending them so that the order is

Tue Feb 26 18:47:44 2002  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
        mnemonics rather than prepending them so that the
        order is typically forward rather than typically
        backward. (Partial fix for #52395)
This commit is contained in:
Owen Taylor 2002-02-26 23:56:26 +00:00 committed by Owen Taylor
parent ad64579ca0
commit 386f8d1f62
8 changed files with 50 additions and 1 deletions

View File

@ -1,3 +1,10 @@
Tue Feb 26 18:47:44 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
mnemonics rather than prepending them so that the
order is typically forward rather than typically
backward. (Partial fix for #52395)
Wed Feb 27 00:45:39 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c

View File

@ -1,3 +1,10 @@
Tue Feb 26 18:47:44 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
mnemonics rather than prepending them so that the
order is typically forward rather than typically
backward. (Partial fix for #52395)
Wed Feb 27 00:45:39 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c

View File

@ -1,3 +1,10 @@
Tue Feb 26 18:47:44 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
mnemonics rather than prepending them so that the
order is typically forward rather than typically
backward. (Partial fix for #52395)
Wed Feb 27 00:45:39 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c

View File

@ -1,3 +1,10 @@
Tue Feb 26 18:47:44 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
mnemonics rather than prepending them so that the
order is typically forward rather than typically
backward. (Partial fix for #52395)
Wed Feb 27 00:45:39 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c

View File

@ -1,3 +1,10 @@
Tue Feb 26 18:47:44 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
mnemonics rather than prepending them so that the
order is typically forward rather than typically
backward. (Partial fix for #52395)
Wed Feb 27 00:45:39 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c

View File

@ -1,3 +1,10 @@
Tue Feb 26 18:47:44 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
mnemonics rather than prepending them so that the
order is typically forward rather than typically
backward. (Partial fix for #52395)
Wed Feb 27 00:45:39 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c

View File

@ -1,3 +1,10 @@
Tue Feb 26 18:47:44 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
mnemonics rather than prepending them so that the
order is typically forward rather than typically
backward. (Partial fix for #52395)
Wed Feb 27 00:45:39 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c

View File

@ -1136,7 +1136,7 @@ gtk_window_add_mnemonic (GtkWindow *window,
if (mnemonic)
{
g_return_if_fail (g_slist_find (mnemonic->targets, target) == NULL);
mnemonic->targets = g_slist_prepend (mnemonic->targets, target);
mnemonic->targets = g_slist_append (mnemonic->targets, target);
}
else
{