summaryrefslogtreecommitdiff
path: root/tests/testlist.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-07-24 15:54:49 +0200
committerBenjamin Otte <otte@redhat.com>2020-07-25 00:47:36 +0200
commitd7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (patch)
tree8dc515efd6e0c0b0da1d7e02049f284edd6050ff /tests/testlist.c
parent46423e614d4fcf142d9578d4788dde664ea280f9 (diff)
downloadgtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz
Replace "gint" with "int"
Diffstat (limited to 'tests/testlist.c')
-rw-r--r--tests/testlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testlist.c b/tests/testlist.c
index b781c28980..25579739be 100644
--- a/tests/testlist.c
+++ b/tests/testlist.c
@@ -9,7 +9,7 @@ struct _Row
{
GtkListBoxRow parent_instance;
GtkWidget *label;
- gint sort_id;
+ int sort_id;
};
struct _RowClass
@@ -44,7 +44,7 @@ row_class_init (RowClass *class)
}
static GtkWidget *
-row_new (const gchar* text, gint sort_id) {
+row_new (const gchar* text, int sort_id) {
Row *row;
row = g_object_new (row_get_type (), NULL);