gdk/gdkdisplay.h gdk/gdkdrawable.h gdk/gdkevents.h gdk/gdkpango.h
2008-01-15 Michael Natterer <mitch@imendio.com> * gdk/gdkdisplay.h * gdk/gdkdrawable.h * gdk/gdkevents.h * gdk/gdkpango.h * gdk/gdkregion.h * gdk/gdkrgb.h * gdk/gdkwindow.h: made more struct pointer and array parameters const. GDK should now be constified as far as possible without breaking source compatibility. Includes some minor cleanup like indentation and s/nfoo/n_foo/ (bug #508544). * gdk/gdkdisplay.c * gdk/gdkdraw.c * gdk/gdkevents.c * gdk/gdkpango.c * gdk/gdkregion-generic.c * gdk/gdkrgb.c * gdk/directfb/gdkdisplay-directfb.c * gdk/directfb/gdkwindow-directfb.c * gdk/quartz/gdkdisplay-quartz.c * gdk/quartz/gdkwindow-quartz.c * gdk/win32/gdkdisplay-win32.c * gdk/win32/gdkwindow-win32.c * gdk/x11/gdkdisplay-x11.c * gdk/x11/gdkwindow-x11.c: changed accordingly. svn path=/trunk/; revision=19372
This commit is contained in:
committed by
Michael Natterer
parent
7a658c1389
commit
8243e3d415
12
gdk/gdkrgb.h
12
gdk/gdkrgb.h
@ -69,7 +69,7 @@ void gdk_draw_rgb_image (GdkDrawable *drawable,
|
||||
gint width,
|
||||
gint height,
|
||||
GdkRgbDither dith,
|
||||
guchar *rgb_buf,
|
||||
const guchar *rgb_buf,
|
||||
gint rowstride);
|
||||
void gdk_draw_rgb_image_dithalign (GdkDrawable *drawable,
|
||||
GdkGC *gc,
|
||||
@ -78,7 +78,7 @@ void gdk_draw_rgb_image_dithalign (GdkDrawable *drawable,
|
||||
gint width,
|
||||
gint height,
|
||||
GdkRgbDither dith,
|
||||
guchar *rgb_buf,
|
||||
const guchar *rgb_buf,
|
||||
gint rowstride,
|
||||
gint xdith,
|
||||
gint ydith);
|
||||
@ -89,7 +89,7 @@ void gdk_draw_rgb_32_image (GdkDrawable *drawable,
|
||||
gint width,
|
||||
gint height,
|
||||
GdkRgbDither dith,
|
||||
guchar *buf,
|
||||
const guchar *buf,
|
||||
gint rowstride);
|
||||
void gdk_draw_rgb_32_image_dithalign (GdkDrawable *drawable,
|
||||
GdkGC *gc,
|
||||
@ -98,7 +98,7 @@ void gdk_draw_rgb_32_image_dithalign (GdkDrawable *drawable,
|
||||
gint width,
|
||||
gint height,
|
||||
GdkRgbDither dith,
|
||||
guchar *buf,
|
||||
const guchar *buf,
|
||||
gint rowstride,
|
||||
gint xdith,
|
||||
gint ydith);
|
||||
@ -109,7 +109,7 @@ void gdk_draw_gray_image (GdkDrawable *drawable,
|
||||
gint width,
|
||||
gint height,
|
||||
GdkRgbDither dith,
|
||||
guchar *buf,
|
||||
const guchar *buf,
|
||||
gint rowstride);
|
||||
void gdk_draw_indexed_image (GdkDrawable *drawable,
|
||||
GdkGC *gc,
|
||||
@ -118,7 +118,7 @@ void gdk_draw_indexed_image (GdkDrawable *drawable,
|
||||
gint width,
|
||||
gint height,
|
||||
GdkRgbDither dith,
|
||||
guchar *buf,
|
||||
const guchar *buf,
|
||||
gint rowstride,
|
||||
GdkRgbCmap *cmap);
|
||||
GdkRgbCmap *gdk_rgb_cmap_new (guint32 *colors,
|
||||
|
||||
Reference in New Issue
Block a user