diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-07-06 05:14:03 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-07-06 05:14:03 +0000 |
commit | f8794ccccadc91bd37a4fe19577fc789cf0d0107 (patch) | |
tree | 47fea3e572b4614ca5aada3be8a53ea671e34980 /gtk/gtkcheckbutton.c | |
parent | e5afc7e33198a7b694e4177de7802e80d0be1aec (diff) | |
download | gtk+-f8794ccccadc91bd37a4fe19577fc789cf0d0107.tar.gz |
Improve consistency of signal and property names
Diffstat (limited to 'gtk/gtkcheckbutton.c')
-rw-r--r-- | gtk/gtkcheckbutton.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk/gtkcheckbutton.c b/gtk/gtkcheckbutton.c index fef4b39f1a..6899a50440 100644 --- a/gtk/gtkcheckbutton.c +++ b/gtk/gtkcheckbutton.c @@ -117,7 +117,10 @@ gtk_check_button_new_with_label (const gchar *label) GtkWidget* gtk_check_button_new_with_mnemonic (const gchar *label) { - return g_object_new (GTK_TYPE_CHECK_BUTTON, "label", label, "use_underline", TRUE, NULL); + return g_object_new (GTK_TYPE_CHECK_BUTTON, + "label", label, + "use-underline", TRUE, + NULL); } |