summaryrefslogtreecommitdiff
path: root/gdk/gdk.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>1998-11-24 16:15:46 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-11-24 16:15:46 +0000
commit1bb0d4c0f32d8cda26207a7c2048d647211f3340 (patch)
tree652420216f6da8588a21e5deb5c7004d580a8286 /gdk/gdk.h
parent5efb9be963cb79b9a1a7cd4ee1d58f645eae9832 (diff)
downloadgtk+-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.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/gdk/gdk.h b/gdk/gdk.h
index a0aa173e3b..38edfd3e33 100644
--- a/gdk/gdk.h
+++ b/gdk/gdk.h
@@ -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,