diff options
author | Benjamin Otte <otte@redhat.com> | 2020-07-24 15:54:49 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-07-25 00:47:36 +0200 |
commit | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (patch) | |
tree | 8dc515efd6e0c0b0da1d7e02049f284edd6050ff /tests/testselectionmode.c | |
parent | 46423e614d4fcf142d9578d4788dde664ea280f9 (diff) | |
download | gtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz |
Replace "gint" with "int"
Diffstat (limited to 'tests/testselectionmode.c')
-rw-r--r-- | tests/testselectionmode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testselectionmode.c b/tests/testselectionmode.c index 7157c8ec02..325e80b2f0 100644 --- a/tests/testselectionmode.c +++ b/tests/testselectionmode.c @@ -78,7 +78,7 @@ selectable_row_new (void) } static void -add_row (GtkWidget *list, gint i) +add_row (GtkWidget *list, int i) { GtkWidget *row; GtkWidget *label; @@ -190,7 +190,7 @@ main (int argc, char *argv[]) GtkWidget *window; GtkWidget *list; GtkWidget *button; - gint i; + int i; GSimpleActionGroup *group; GSimpleAction *action; |