Swaps a few uses of gint for int

We've avoiding using the redundant glib typedefs such as guint, gint
gpointer etc and prefer to use the equivalent C types so this patch
removes a few uses of gint that slipped past review.
This commit is contained in:
Robert Bragg 2012-01-16 11:40:00 +00:00
parent 3161f1b0e6
commit e1bd0b2090
2 changed files with 8 additions and 8 deletions

View File

@ -187,10 +187,10 @@ cogl_wayland_onscreen_get_shell_surface (CoglOnscreen *onscreen);
void void
cogl_wayland_onscreen_resize (CoglOnscreen *onscreen, cogl_wayland_onscreen_resize (CoglOnscreen *onscreen,
gint width, int width,
gint height, int height,
gint offset_x, int offset_x,
gint offset_y); int offset_y);
#endif /* COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT */ #endif /* COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT */
/** /**

View File

@ -501,10 +501,10 @@ cogl_wayland_onscreen_get_shell_surface (CoglOnscreen *onscreen)
void void
cogl_wayland_onscreen_resize (CoglOnscreen *onscreen, cogl_wayland_onscreen_resize (CoglOnscreen *onscreen,
gint width, int width,
gint height, int height,
gint offset_x, int offset_x,
gint offset_y) int offset_y)
{ {
CoglFramebuffer *fb; CoglFramebuffer *fb;