summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacob berkman <jacob@ximian.com>2001-11-14 23:59:03 +0000
committerJacob Berkman <jberkman@src.gnome.org>2001-11-14 23:59:03 +0000
commitd5ff32d7e0edee906e05e6cc2a60fc90e3b5b4d5 (patch)
tree8191f0a0f41e741fd9f90719e5791f04da0c4c7b
parenta1361b57e1517ad71f18d540111cac759087661b (diff)
downloadgtk+-d5ff32d7e0edee906e05e6cc2a60fc90e3b5b4d5.tar.gz
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
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-05
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-25
-rw-r--r--ChangeLog.pre-2-45
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--gtk/gtkgamma.c2
8 files changed, 36 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fc82988fd9..82b82030bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index fc82988fd9..82b82030bc 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -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.
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index fc82988fd9..82b82030bc 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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.
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index fc82988fd9..82b82030bc 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -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.
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index fc82988fd9..82b82030bc 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -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.
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index fc82988fd9..82b82030bc 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -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.
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index fc82988fd9..82b82030bc 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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.
diff --git a/gtk/gtkgamma.c b/gtk/gtkgamma.c
index eb5ab659d3..25b514894e 100644
--- a/gtk/gtkgamma.c
+++ b/gtk/gtkgamma.c
@@ -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);