diff options
author | John Ralls <jralls@ceridwen.us> | 2019-01-23 20:02:16 -0800 |
---|---|---|
committer | John Ralls <jralls@ceridwen.us> | 2019-01-23 20:02:16 -0800 |
commit | 3e3a15de838c063baba03626508613580a374cef (patch) | |
tree | 1cd6e474319a3972c38a10c8beee60ab591eb2b3 /modules | |
parent | 3edb8a93057014f83481da681971c07dca6416d3 (diff) | |
download | gtk+-3e3a15de838c063baba03626508613580a374cef.tar.gz |
[imquartz] Fix incorrect GdkEvent window member name.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/input/imquartz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/input/imquartz.c b/modules/input/imquartz.c index 84bf0e26ea..b7428fcf92 100644 --- a/modules/input/imquartz.c +++ b/modules/input/imquartz.c @@ -196,7 +196,7 @@ quartz_filter_keypress (GtkIMContext *context, { if (event->hardware_keycode == 0 && event->keyval == 0xffffff) /* update text input changes by mouse events */ - return output_result (context, event->win); + return output_result (context, event->window); else return gtk_im_context_filter_keypress (qc->slave, event); } |