Skip to content
Snippets Groups Projects
Commit d9ea1850 authored by Lance Dillon's avatar Lance Dillon
Browse files

Main iteration changed at GTK 2.2

Rev: src/post_modules/GTK2/source/global.pre:1.13
parent 11a5afaf
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,11 @@ static void backend_callback(struct callback *_cb, ...@@ -65,7 +65,11 @@ static void backend_callback(struct callback *_cb,
if (my_timercmp (&timeout, <, &next_timeout)) if (my_timercmp (&timeout, <, &next_timeout))
next_timeout = timeout; next_timeout = timeout;
} else } else
#ifdef HAVE_GTK22
while(g_main_context_iteration(NULL,0));
#else
while(g_main_iteration( 0 ) ); while(g_main_iteration( 0 ) );
#endif
} }
static struct callback *backend_cb; static struct callback *backend_cb;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment