forked from AuroraMiddleware/gtk
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:
parent
ad64579ca0
commit
386f8d1f62
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user