diff options
author | Owen Taylor <otaylor@redhat.com> | 1998-11-24 16:15:46 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-11-24 16:15:46 +0000 |
commit | 1bb0d4c0f32d8cda26207a7c2048d647211f3340 (patch) | |
tree | 652420216f6da8588a21e5deb5c7004d580a8286 /gdk/gdk.h | |
parent | 5efb9be963cb79b9a1a7cd4ee1d58f645eae9832 (diff) | |
download | gtk+-1bb0d4c0f32d8cda26207a7c2048d647211f3340.tar.gz |
Fixed up copyright message.
Tue Nov 24 11:11:05 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.[ch]: Fixed up copyright message.
* gdk/gdkrgb.c (DM): Make the dither matrix constant
so it can be shared.
* gtk/gtkdnd.c: Make cursor bitmaps const.
* gdk/gdk.h gdk/gdkpixmap.c: Added const to
gdk_pixmap/bitmap_create_from_data.
Diffstat (limited to 'gdk/gdk.h')
-rw-r--r-- | gdk/gdk.h | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -419,17 +419,17 @@ GdkPixmap* gdk_pixmap_new (GdkWindow *window, gint width, gint height, gint depth); -GdkBitmap* gdk_bitmap_create_from_data (GdkWindow *window, - gchar *data, - gint width, - gint height); -GdkPixmap* gdk_pixmap_create_from_data (GdkWindow *window, - gchar *data, - gint width, - gint height, - gint depth, - GdkColor *fg, - GdkColor *bg); +GdkBitmap* gdk_bitmap_create_from_data (GdkWindow *window, + const gchar *data, + gint width, + gint height); +GdkPixmap* gdk_pixmap_create_from_data (GdkWindow *window, + const gchar *data, + gint width, + gint height, + gint depth, + GdkColor *fg, + GdkColor *bg); GdkPixmap* gdk_pixmap_create_from_xpm (GdkWindow *window, GdkBitmap **mask, GdkColor *transparent_color, |