summaryrefslogtreecommitdiff
path: root/gtk/gtkprogress.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-03-26 05:49:15 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-03-26 05:49:15 +0000
commit4c28ce0877e5749d9d930304397995535190a168 (patch)
tree53429d9310a84cc9825774d9ae6808a8963c6e30 /gtk/gtkprogress.c
parent6323876b413c591edb1779fd5897066d6a4983f5 (diff)
downloadgdk-pixbuf-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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkprogress.c b/gtk/gtkprogress.c
index 4a6b819f4..cb3fcc292 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");
}
}