summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
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 /gdk-pixbuf
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 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/ChangeLog5
-rw-r--r--gdk-pixbuf/gdk-pixbuf-data.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index 8fa0f7111..9830f95f9 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-25 Matthias Clasen <mclasen@redhat.com>
+
+ * gdk-pixbuf-data.c (gdk_pixbuf_new_from_data): Use canonical
+ property names.
+
2005-03-21 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf.c (gdk_pixbuf_class_init): Mark param spec strings
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,