projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5bf5b58
)
gtktypes: GTK_INVALID_LIST_POSITION should be an int
author
Benjamin Otte
<otte@redhat.com>
Tue, 7 Dec 2021 15:15:17 +0000
(16:15 +0100)
committer
Benjamin 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
patch
|
blob
|
history
diff --git
a/gtk/gtktypes.h
b/gtk/gtktypes.h
index 5892c0980ee4ca72fbd62610e0bc39c604b6227a..71afde94b06362c4521716757f5758eef4ecab61 100644
(file)
--- a/
gtk/gtktypes.h
+++ b/
gtk/gtktypes.h
@@
-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 ((guint
32
) 0xffffffff)
+#define GTK_INVALID_LIST_POSITION ((guint) 0xffffffff)
G_END_DECLS