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/gtkprogress.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/gtkprogress.c')
-rw-r--r-- | gtk/gtkprogress.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkprogress.c b/gtk/gtkprogress.c index 4a6b819f48..cb3fcc2920 100644 --- a/gtk/gtkprogress.c +++ b/gtk/gtkprogress.c @@ -653,7 +653,7 @@ gtk_progress_set_show_text (GtkProgress *progress, gtk_widget_queue_resize (GTK_WIDGET (progress)); - g_object_notify (G_OBJECT (progress), "show_text"); + g_object_notify (G_OBJECT (progress), "show-text"); } } @@ -672,13 +672,13 @@ gtk_progress_set_text_alignment (GtkProgress *progress, if (progress->x_align != x_align) { progress->x_align = x_align; - g_object_notify (G_OBJECT (progress), "text_xalign"); + g_object_notify (G_OBJECT (progress), "text-xalign"); } if (progress->y_align != y_align) { progress->y_align = y_align; - g_object_notify (G_OBJECT (progress), "text_yalign"); + g_object_notify (G_OBJECT (progress), "text-yalign"); } g_object_thaw_notify (G_OBJECT (progress)); @@ -752,7 +752,7 @@ gtk_progress_set_activity_mode (GtkProgress *progress, if (GTK_WIDGET_DRAWABLE (GTK_WIDGET (progress))) gtk_widget_queue_resize (GTK_WIDGET (progress)); - g_object_notify (G_OBJECT (progress), "activity_mode"); + g_object_notify (G_OBJECT (progress), "activity-mode"); } } |