diff options
author | David Robillard <d@drobilla.net> | 2019-08-03 12:43:59 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-09-03 08:32:16 +0200 |
commit | 61476f5de49b20a6836186a82082bc2b7c70e971 (patch) | |
tree | 66cee2ae9f3a27bc027fae0dd7b95aed9edc4026 /pugl/detail/x11.h | |
parent | 9995566f3980ad6092428963b63558fb599bac8d (diff) | |
download | pugl-61476f5de49b20a6836186a82082bc2b7c70e971.tar.gz pugl-61476f5de49b20a6836186a82082bc2b7c70e971.tar.bz2 pugl-61476f5de49b20a6836186a82082bc2b7c70e971.zip |
X11: Move input method to world
Diffstat (limited to 'pugl/detail/x11.h')
-rw-r--r-- | pugl/detail/x11.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/detail/x11.h b/pugl/detail/x11.h index 54881af..34694fe 100644 --- a/pugl/detail/x11.h +++ b/pugl/detail/x11.h @@ -35,6 +35,7 @@ typedef struct { struct PuglWorldInternalsImpl { Display* display; PuglX11Atoms atoms; + XIM xim; }; struct PuglInternalsImpl { @@ -42,7 +43,6 @@ struct PuglInternalsImpl { int screen; XVisualInfo* vi; Window win; - XIM xim; XIC xic; PuglSurface* surface; }; |