projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6818eee
)
gtk: fix GTK_INVALID_LIST_POSITION type
author
Marc-André Lureau
<marcandre.lureau@redhat.com>
Thu, 8 Jul 2021 09:08:38 +0000
(13:08 +0400)
committer
Marc-André Lureau
<marcandre.lureau@redhat.com>
Thu, 8 Jul 2021 09:08:43 +0000
(13:08 +0400)
Unless there is an explicit front cast, constants are generally int for g-i.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
gtk/gtktypes.h
patch
|
blob
|
history
diff --git
a/gtk/gtktypes.h
b/gtk/gtktypes.h
index 79720618f0cfc034a9b49584dfb4a86cfa95572f..5892c0980ee4ca72fbd62610e0bc39c604b6227a 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 (
0xffffffffU
)
+#define GTK_INVALID_LIST_POSITION (
(guint32) 0xffffffff
)
G_END_DECLS