diff options
Diffstat (limited to 'gtk/gtkfontbutton.c')
-rw-r--r-- | gtk/gtkfontbutton.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c index 3d84acb93c..6773d184f3 100644 --- a/gtk/gtkfontbutton.c +++ b/gtk/gtkfontbutton.c @@ -505,7 +505,7 @@ gtk_font_button_set_use_font (GtkFontButton *font_button, else gtk_widget_set_style (font_button->priv->font_label, NULL); - g_object_notify (G_OBJECT (font_button), "use_font"); + g_object_notify (G_OBJECT (font_button), "use-font"); } } @@ -551,7 +551,7 @@ gtk_font_button_set_use_size (GtkFontButton *font_button, if (font_button->priv->use_font) gtk_font_button_label_use_font (font_button); - g_object_notify (G_OBJECT (font_button), "use_size"); + g_object_notify (G_OBJECT (font_button), "use-size"); } } @@ -595,7 +595,7 @@ gtk_font_button_set_show_style (GtkFontButton *font_button, gtk_font_button_update_font_info (font_button); - g_object_notify (G_OBJECT (font_button), "show_style"); + g_object_notify (G_OBJECT (font_button), "show-style"); } } @@ -645,7 +645,7 @@ gtk_font_button_set_show_size (GtkFontButton *font_button, gtk_font_button_update_font_info (font_button); - g_object_notify (G_OBJECT (font_button), "show_size"); + g_object_notify (G_OBJECT (font_button), "show-size"); } } @@ -705,7 +705,7 @@ gtk_font_button_set_font_name (GtkFontButton *font_button, else result = FALSE; - g_object_notify (G_OBJECT (font_button), "font_name"); + g_object_notify (G_OBJECT (font_button), "font-name"); return result; } @@ -766,7 +766,7 @@ dialog_ok_clicked (GtkWidget *widget, /* Set label font */ gtk_font_button_update_font_info (font_button); - g_object_notify (G_OBJECT (font_button), "font_name"); + g_object_notify (G_OBJECT (font_button), "font-name"); /* Emit font_set signal */ g_signal_emit (font_button, font_button_signals[FONT_SET], 0); |