forked from AuroraMiddleware/gtk
Cosmetics: Eradicate gint
Remove a handful of errant uses of gint.
This commit is contained in:
parent
3ab97fac1f
commit
578db92973
@ -82,7 +82,7 @@ typedef struct
|
||||
struct {
|
||||
float width;
|
||||
float height;
|
||||
gint uniform_data_len;
|
||||
int uniform_data_len;
|
||||
guchar uniform_data[32];
|
||||
} gl_shader;
|
||||
};
|
||||
|
@ -93,7 +93,7 @@ type_name_mangle (const char *name,
|
||||
gboolean split_first_cap)
|
||||
{
|
||||
GString *symbol_name = g_string_new ("");
|
||||
gint i;
|
||||
int i;
|
||||
|
||||
for (i = 0; name[i] != '\0'; i++)
|
||||
{
|
||||
@ -300,7 +300,7 @@ main (int argc, char **argv)
|
||||
{
|
||||
const GType *all_types;
|
||||
guint n_types = 0, i;
|
||||
gint result;
|
||||
int result;
|
||||
|
||||
/* These must be set before before gtk_test_init */
|
||||
g_setenv ("GIO_USE_VFS", "local", TRUE);
|
||||
|
@ -89,7 +89,7 @@ print_attr_list (PangoAttrList *attrs, GString *string)
|
||||
|
||||
iter = pango_attr_list_get_iterator (attrs);
|
||||
do {
|
||||
gint start, end;
|
||||
int start, end;
|
||||
GSList *list, *l;
|
||||
|
||||
pango_attr_iterator_range (iter, &start, &end);
|
||||
|
Loading…
Reference in New Issue
Block a user