diff options
author | Yuri Chornoivan <yurchor@ukr.net> | 2020-05-28 11:00:03 +0300 |
---|---|---|
committer | Yuri Chornoivan <yurchor@ukr.net> | 2020-05-28 11:00:03 +0300 |
commit | 01bd4cc4e18a1ea697fe61791ba710d0d55e8290 (patch) | |
tree | b4475a50d93510dcc3ee2df10e97d52fc3b43a0d /gdk/quartz | |
parent | 92bc78c12fcbe06aa41a0d825017e1e6c57fc061 (diff) | |
download | gtk+-01bd4cc4e18a1ea697fe61791ba710d0d55e8290.tar.gz |
Fix minor typos
Diffstat (limited to 'gdk/quartz')
-rw-r--r-- | gdk/quartz/gdkeventloop-quartz.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdk/quartz/gdkeventloop-quartz.c b/gdk/quartz/gdkeventloop-quartz.c index a9875ed44f..6927188a3b 100644 --- a/gdk/quartz/gdkeventloop-quartz.c +++ b/gdk/quartz/gdkeventloop-quartz.c @@ -59,7 +59,7 @@ static int current_loop_level = 0; static int acquired_loop_level = -1; /* Between run_loop_before_waiting() and run_loop_after_waiting(); - * whether we we need to call select_thread_collect_poll() + * whether we need to call select_thread_collect_poll() */ static gboolean run_loop_polling_async = FALSE; @@ -95,7 +95,7 @@ static GPollFD event_poll_fd; /* Current NSEvents that we've gotten from Cocoa but haven't yet converted * to GdkEvents. We wait until our dispatch() function to do the conversion - * since the conversion can conceivably cause signals to be emmitted + * since the conversion can conceivably cause signals to be emitted * or other things that shouldn’t happen inside a poll function. */ static GQueue *current_events; @@ -132,7 +132,7 @@ static gint getting_events = 0; ************************************************************/ /* The states in our state machine, see comments in select_thread_func() - * for descriptiions of each state + * for descriptions of each state */ typedef enum { BEFORE_START, @@ -235,7 +235,7 @@ select_thread_func (void *arg) case WAITING: /* Waiting for a set of file descriptors to be submitted by the main thread * - * => POLLING_QUEUED: main thread thread submits a set of file descriptors + * => POLLING_QUEUED: main thread submits a set of file descriptors */ SELECT_THREAD_WAIT (); break; |