gtktypes: GTK_INVALID_LIST_POSITION should be an int

GListModel uses guint, so the macros we define for it should match that.

Related: !3738
This commit is contained in:
Benjamin Otte 2021-12-07 16:15:17 +01:00
parent 5bf5b58eb3
commit b9d4da9cfe

View 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