diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-03-26 05:49:15 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-26 05:49:15 +0000 |
commit | 4c28ce0877e5749d9d930304397995535190a168 (patch) | |
tree | 53429d9310a84cc9825774d9ae6808a8963c6e30 /gtk/gtkfontbutton.c | |
parent | 6323876b413c591edb1779fd5897066d6a4983f5 (diff) | |
download | gtk+-4c28ce0877e5749d9d930304397995535190a168.tar.gz |
Use canonical names for g_object_notify() as well.
2005-03-26 Matthias Clasen <mclasen@redhat.com>
* gtk/*.c:
* gdk/gdkdisplaymanager.c:
Use canonical names for g_object_notify() as well.
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); |