Make g_x11_xim and g_x11_xic both static
This commit is contained in:
parent
ce2b973beb
commit
268570a108
|
@ -34,8 +34,8 @@ Atom g_x11_quit_atom;
|
||||||
static volatile sig_atomic_t g_x11_quit;
|
static volatile sig_atomic_t g_x11_quit;
|
||||||
bool g_x11_has_focus;
|
bool g_x11_has_focus;
|
||||||
Window g_x11_win;
|
Window g_x11_win;
|
||||||
XIM g_x11_xim;
|
static XIM g_x11_xim;
|
||||||
XIC g_x11_xic;
|
static XIC g_x11_xic;
|
||||||
Display *g_x11_dpy;
|
Display *g_x11_dpy;
|
||||||
bool g_x11_true_full;
|
bool g_x11_true_full;
|
||||||
|
|
||||||
|
|
|
@ -38,8 +38,6 @@
|
||||||
extern Atom g_x11_quit_atom;
|
extern Atom g_x11_quit_atom;
|
||||||
extern bool g_x11_has_focus;
|
extern bool g_x11_has_focus;
|
||||||
extern Window g_x11_win;
|
extern Window g_x11_win;
|
||||||
extern XIC g_x11_xic;
|
|
||||||
extern XIM g_x11_xim;
|
|
||||||
extern Display *g_x11_dpy;
|
extern Display *g_x11_dpy;
|
||||||
extern bool g_x11_true_full;
|
extern bool g_x11_true_full;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue