gtktypes: GTK_INVALID_LIST_POSITION should be an int
authorBenjamin Otte <otte@redhat.com>
Tue, 7 Dec 2021 15:15:17 +0000 (16:15 +0100)
committerBenjamin Otte <otte@redhat.com>
Tue, 7 Dec 2021 15:15:17 +0000 (16:15 +0100)
GListModel uses guint, so the macros we define for it should match that.

Related: !3738

gtk/gtktypes.h

index 5892c0980ee4ca72fbd62610e0bc39c604b6227a..71afde94b06362c4521716757f5758eef4ecab61 100644 (file)
@@ -69,7 +69,7 @@ typedef struct _GtkWindow              GtkWindow;
  * Refer to each function's documentation for if this value is
  * allowed and what it does.
  */
-#define GTK_INVALID_LIST_POSITION ((guint32) 0xffffffff)
+#define GTK_INVALID_LIST_POSITION ((guint) 0xffffffff)
 
 G_END_DECLS