gdk/win32/gdkevents-win32.c: Fix typo

...to fix the build on Windows.
This commit is contained in:
Chun-wei Fan 2013-11-13 16:18:12 +08:00
parent 99fb39460a
commit 42bdbd8c30

View File

@ -3347,7 +3347,7 @@ gdk_event_check (GSource *source)
gdk_threads_enter (); gdk_threads_enter ();
if (_gdk_display->event_pause_count > 0) if (_gdk_display->event_pause_count > 0)
retval = gdk_event_queue_find_first (_gdk_display) != NULL; retval = _gdk_event_queue_find_first (_gdk_display) != NULL;
else if (event_poll_fd.revents & G_IO_IN) else if (event_poll_fd.revents & G_IO_IN)
retval = (_gdk_event_queue_find_first (_gdk_display) != NULL || retval = (_gdk_event_queue_find_first (_gdk_display) != NULL ||
(modal_win32_dialog == NULL && (modal_win32_dialog == NULL &&