create the label with a mnemonic

2001-11-14  jacob berkman  <jacob@ximian.com>

	* gtk/gtkgamma.c (button_clicked_callback): create the label with
	a mnemonic
This commit is contained in:
jacob berkman
2001-11-14 23:59:03 +00:00
committed by Jacob Berkman
parent a1361b57e1
commit d5ff32d7e0
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-11-14 jacob berkman <jacob@ximian.com>
* gtk/gtkgamma.c (button_clicked_callback): create the label with
a mnemonic
2001-11-15 Sven Neumann <sven@gimp.org>
* tests/testgtk.c: make it compile without warnings.

View File

@ -1,3 +1,8 @@
2001-11-14 jacob berkman <jacob@ximian.com>
* gtk/gtkgamma.c (button_clicked_callback): create the label with
a mnemonic
2001-11-15 Sven Neumann <sven@gimp.org>
* tests/testgtk.c: make it compile without warnings.

View File

@ -1,3 +1,8 @@
2001-11-14 jacob berkman <jacob@ximian.com>
* gtk/gtkgamma.c (button_clicked_callback): create the label with
a mnemonic
2001-11-15 Sven Neumann <sven@gimp.org>
* tests/testgtk.c: make it compile without warnings.

View File

@ -1,3 +1,8 @@
2001-11-14 jacob berkman <jacob@ximian.com>
* gtk/gtkgamma.c (button_clicked_callback): create the label with
a mnemonic
2001-11-15 Sven Neumann <sven@gimp.org>
* tests/testgtk.c: make it compile without warnings.

View File

@ -1,3 +1,8 @@
2001-11-14 jacob berkman <jacob@ximian.com>
* gtk/gtkgamma.c (button_clicked_callback): create the label with
a mnemonic
2001-11-15 Sven Neumann <sven@gimp.org>
* tests/testgtk.c: make it compile without warnings.

View File

@ -1,3 +1,8 @@
2001-11-14 jacob berkman <jacob@ximian.com>
* gtk/gtkgamma.c (button_clicked_callback): create the label with
a mnemonic
2001-11-15 Sven Neumann <sven@gimp.org>
* tests/testgtk.c: make it compile without warnings.

View File

@ -1,3 +1,8 @@
2001-11-14 jacob berkman <jacob@ximian.com>
* gtk/gtkgamma.c (button_clicked_callback): create the label with
a mnemonic
2001-11-15 Sven Neumann <sven@gimp.org>
* tests/testgtk.c: make it compile without warnings.

View File

@ -400,7 +400,7 @@ button_clicked_callback (GtkWidget *w, gpointer data)
gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 2);
gtk_widget_show (hbox);
label = gtk_label_new (_("_Gamma value"));
label = gtk_label_new_with_mnemonic (_("_Gamma value"));
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 2);
gtk_widget_show (label);