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 | ed5a5b2e55d31809122a2c22fdd5443c977808e2 (patch) | |
tree | 99e07823afd040efbf3d86ba7a4a639fc48247e4 /gdk-pixbuf | |
parent | 46d84fd825ef3e5490b337e89213a2e8a86589f8 (diff) | |
download | gdk-pixbuf-ed5a5b2e55d31809122a2c22fdd5443c977808e2.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 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-data.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-data.c b/gdk-pixbuf/gdk-pixbuf-data.c index 1fcf87b84..43fd9c1d3 100644 --- a/gdk-pixbuf/gdk-pixbuf-data.c +++ b/gdk-pixbuf/gdk-pixbuf-data.c @@ -64,9 +64,9 @@ gdk_pixbuf_new_from_data (const guchar *data, GdkColorspace colorspace, gboolean pixbuf = g_object_new (GDK_TYPE_PIXBUF, "colorspace", colorspace, - "n_channels", has_alpha ? 4 : 3, - "bits_per_sample", bits_per_sample, - "has_alpha", has_alpha ? TRUE : FALSE, + "n-channels", has_alpha ? 4 : 3, + "bits-per-sample", bits_per_sample, + "has-alpha", has_alpha ? TRUE : FALSE, "width", width, "height", height, "rowstride", rowstride, |