diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-01-28 18:52:49 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-01-28 18:52:49 +0000 |
commit | e2b730ac43a27e91217a0d5602eff948f29533f5 (patch) | |
tree | 415cc297ea4c01e4c6d889dd14c4b4cf43603b01 /gtk/gtkcellrendererpixbuf.c | |
parent | 929c8ed53e821f3f48dafc2757cb6b7cdc16cd7c (diff) | |
download | gdk-pixbuf-e2b730ac43a27e91217a0d5602eff948f29533f5.tar.gz |
General property notification cleanup.
Diffstat (limited to 'gtk/gtkcellrendererpixbuf.c')
-rw-r--r-- | gtk/gtkcellrendererpixbuf.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gtk/gtkcellrendererpixbuf.c b/gtk/gtkcellrendererpixbuf.c index 892341048..45b93aec1 100644 --- a/gtk/gtkcellrendererpixbuf.c +++ b/gtk/gtkcellrendererpixbuf.c @@ -173,7 +173,6 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object, if (cellpixbuf->pixbuf) g_object_unref (G_OBJECT (cellpixbuf->pixbuf)); cellpixbuf->pixbuf = pixbuf; - g_object_notify (object, "pixbuf"); break; case PROP_PIXBUF_EXPANDER_OPEN: pixbuf = (GdkPixbuf*) g_value_get_object (value); @@ -182,7 +181,6 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object, if (cellpixbuf->pixbuf_expander_open) g_object_unref (G_OBJECT (cellpixbuf->pixbuf_expander_open)); cellpixbuf->pixbuf_expander_open = pixbuf; - g_object_notify (object, "pixbuf_expander_open"); break; case PROP_PIXBUF_EXPANDER_CLOSED: pixbuf = (GdkPixbuf*) g_value_get_object (value); @@ -191,7 +189,6 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object, if (cellpixbuf->pixbuf_expander_closed) g_object_unref (G_OBJECT (cellpixbuf->pixbuf_expander_closed)); cellpixbuf->pixbuf_expander_closed = pixbuf; - g_object_notify (object, "pixbuf_expander_closed"); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec); |