mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-14 05:16:18 +01:00
gmain: fix g_main_context_check declaration
g_main_context_check is defined as a function returning gboolean. It should be declared as such. https://bugzilla.gnome.org/show_bug.cgi?id=774086
This commit is contained in:
parent
d8acf9b956
commit
4607bd377f
@ -366,10 +366,10 @@ gint g_main_context_query (GMainContext *context,
|
|||||||
GPollFD *fds,
|
GPollFD *fds,
|
||||||
gint n_fds);
|
gint n_fds);
|
||||||
GLIB_AVAILABLE_IN_ALL
|
GLIB_AVAILABLE_IN_ALL
|
||||||
gint g_main_context_check (GMainContext *context,
|
gboolean g_main_context_check (GMainContext *context,
|
||||||
gint max_priority,
|
gint max_priority,
|
||||||
GPollFD *fds,
|
GPollFD *fds,
|
||||||
gint n_fds);
|
gint n_fds);
|
||||||
GLIB_AVAILABLE_IN_ALL
|
GLIB_AVAILABLE_IN_ALL
|
||||||
void g_main_context_dispatch (GMainContext *context);
|
void g_main_context_dispatch (GMainContext *context);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user